Domain‑specific CSS Injector

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

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

Aŭtoro
Nick Bakaka
Ĉiutagaj instaloj
0
Tutaj instaloj
7
Ratings
0 0 0
Versio
1.0
Kreita
2026/01/05
Ĝisdatigita
2026/01/05
Size
2,68 kb
Licenco
CC-ND-NA
Aplikiĝas al

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.