Domain‑specific CSS Injector

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

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

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.

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

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!)

Autor
Nick Bakaka
Installationen heute
0
Installationen gesamt
7
Bewertungen
0 0 0
Version
1.0
Erstellt am
05.01.2026
Letzte Aktualisierung
05.01.2026
Größe
2,68 KB
Lizenz
CC-ND-NA
Wird angewandt auf

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.