Env Specific Favicon

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

Qu'est-ce que Env Specific Favicon ?

Env Specific Favicon est une extension Chrome développée par Elliot Lintz, et sa fonction principale est "Browser extension to customize favicons based on URL and title regex matching".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Env Specific Favicon

Téléchargez les fichiers d'extension Env Specific Favicon au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Env Specific Favicon Env Specific Favicon
ID licfgcgpjgbbankegljcpbklabdnmopl
URL Officiel https://chromewebstore.google.com/detail/env-specific-favicon/licfgcgpjgbbankegljcpbklabdnmopl
Description Browser extension to customize favicons based on URL and title regex matching
Taille du Fichier 240 KB
Nombre d'Installations 129
Version Actuelle 1.3.1
Dernière Mise à Jour 2024-02-06
Date de Publication 2022-04-10
Évaluation 4.33/5 Total 6 Évaluations
Développeur Elliot Lintz
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/Elliot67/env-specific-favicon
URL de la Page d'Aide https://github.com/Elliot67/env-specific-favicon/issues
Langues Prises en Charge 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'"
    }
}