Domain‑specific CSS Injector

Inject custom CSS per domain – works on iOS, iPadOS and desktop browsers.

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

You will need to install an extension such as Tampermonkey to install this script.

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
作者
Nick Bakaka
1日のインストール数
0
累計インストール数
7
評価
0 0 0
バージョン
1.0
作成日
2026/01/05
更新日
2026/01/05
大きさ
2.68KB
ライセンス
CC-ND-NA
対象サイト

This script allows injection of CSS on a per‑domain basis and works on iOS/iPadOS Safari (via the native userscript support in Safari 15+), Chrome, Firefox, and all other browsers that support Userscripts.

How it works

@match *://*/*

The script runs on every page, giving you full control over which hosts receive CSS.

Domain‑specific configuration

hostRegex: A regular expression that tests the current hostname (window.location.hostname). css: Plain CSS rules to be injected. Separate rules with newlines; you can use any valid CSS, including media queries and !important. Injection

The helper injectCss creates a style element and appends it to the document head (or the root element if head is missing).

This works in all browsers that support Userscripts, including iOS Safari.

Customising

To add a new domain, insert another object into domainCssMap.

Example:

{
    hostRegex: /^shop\.example\.com$/i,
    css: `
        .product-grid { grid-template-columns: repeat(3,1fr) !important; }
    `
}

If you want a rule to apply to all sites, add an entry with a regex that always matches, e.g. /^.*$/.

Notes for iOS/iPadOS

Safari on iOS 15+ supports Userscripts via the built‑in script editor (Settings → Safari → Extensions).

After installing this script in the extension, it will run automatically on every page you visit.