Env Specific Favicon

Browser extension to customize favicons based on URL and title regex matching

Was ist Env Specific Favicon?

Env Specific Favicon ist eine Chrome-Erweiterung, die von Elliot Lintz entwickelt wurde, und ihr Hauptmerkmal ist "Browser extension to customize favicons based on URL and title regex matching".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Env Specific Favicon-Erweiterungs-CRX-Datei herunterladen

Laden Sie Env Specific Favicon-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Target any webpages with its URL or title and change its favicon. This enables you to differentiate favicons shared across multiple websites or environments.

If your rule isn't working, make sure your pattern is correct with online tools like regex101.com.                    

Grundlegende Informationen zur Erweiterung

Name Env Specific Favicon Env Specific Favicon
ID licfgcgpjgbbankegljcpbklabdnmopl
Offizielle URL https://chromewebstore.google.com/detail/env-specific-favicon/licfgcgpjgbbankegljcpbklabdnmopl
Beschreibung Browser extension to customize favicons based on URL and title regex matching
Dateigröße 240 KB
Installationsanzahl 129
Aktuelle Version 1.3.1
Letztes Update 2024-02-06
Veröffentlichungsdatum 2022-04-10
Bewertung 4.33/5 Insgesamt 6 Bewertungen
Entwickler Elliot Lintz
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/Elliot67/env-specific-favicon
Hilfeseite URL https://github.com/Elliot67/env-specific-favicon/issues
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Env Specific Favicon",
    "author": "Elliot Lintz",
    "version": "1.3.1",
    "description": "Browser extension to customize favicons based on URL and title regex matching",
    "homepage_url": "https:\/\/github.com\/Elliot67\/env-specific-favicon",
    "action": {
        "default_icon": ".\/assets\/icon-512.png",
        "default_popup": ".\/dist\/popup\/index.html"
    },
    "options_ui": {
        "page": ".\/dist\/options\/index.html",
        "open_in_tab": true
    },
    "background": {
        "service_worker": ".\/dist\/background\/index.mjs"
    },
    "icons": {
        "16": ".\/assets\/icon-128.png",
        "32": ".\/assets\/icon-128.png",
        "128": ".\/assets\/icon-128.png",
        "512": ".\/assets\/icon-512.png"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "run_at": "document_idle",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                ".\/dist\/contentScripts\/index.global.js"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self' http:\/\/localhost:3303; object-src 'self'"
    }
}