Env Specific Favicon

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

Env Specific Favicon क्या है?

Env Specific Favicon Elliot Lintz द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Browser extension to customize favicons based on URL and title regex matching"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Env Specific Favicon एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Env Specific Favicon Env Specific Favicon
ID licfgcgpjgbbankegljcpbklabdnmopl
आधिकारिक URL https://chromewebstore.google.com/detail/env-specific-favicon/licfgcgpjgbbankegljcpbklabdnmopl
विवरण Browser extension to customize favicons based on URL and title regex matching
फ़ाइल का आकार 240 KB
स्थापना संख्या 129
वर्तमान संस्करण 1.3.1
अंतिम अपडेट 2024-02-06
प्रकाशन तिथि 2022-04-10
रेटिंग 4.33/5 कुल 6 रेटिंग्स
डेवलपर Elliot Lintz
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/Elliot67/env-specific-favicon
सहायता पृष्ठ URL https://github.com/Elliot67/env-specific-favicon/issues
समर्थित भाषाएँ 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'"
    }
}