Development favicon

Assign colored stripes to favicons, based on URL and title regex matching.

Development favicon क्या है?

Development favicon Brad Czerniak (ao5357) द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Assign colored stripes to favicons, based on URL and title regex matching."।

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

screenshot
screenshot

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

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

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

                        This extension lets you target URLs and titles with a regex match pattern (so `.*\.local.*` for my local environment) and
apply effects to the favicon. I've got my local with a green stripe across the top, the staging server with a
yellow one, and could set different production environments with different colors and effects.

Another idea would be to match and apply effects for different signed-in Google accounts, so I'd know which
Google Drive is open.                    

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

नाम Development favicon Development favicon
ID mopggoekgknbopeodgiodphdofgeojkb
आधिकारिक URL https://chromewebstore.google.com/detail/development-favicon/mopggoekgknbopeodgiodphdofgeojkb
विवरण Assign colored stripes to favicons, based on URL and title regex matching.
फ़ाइल का आकार 194 KB
स्थापना संख्या 196
वर्तमान संस्करण 1.5.0
अंतिम अपडेट 2023-07-24
प्रकाशन तिथि 2020-03-23
रेटिंग 4.33/5 कुल 3 रेटिंग्स
डेवलपर Brad Czerniak (ao5357)
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/ao5357/development_favicon
सहायता पृष्ठ URL https://github.com/ao5357/development_favicon/issues
गोपनीयता नीति पृष्ठ URL https://github.com/ao5357/development_favicon/blob/master/privacy-policy.md
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Brad Czerniak",
    "name": "__MSG_extensionName__",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "default_locale": "en_US",
    "description": "__MSG_extensionDescription__",
    "homepage_url": "https:\/\/github.com\/ao5357\/development_favicon",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png",
        "256": "icons\/icon256.png"
    },
    "manifest_version": 3,
    "options_page": "options\/index.html",
    "permissions": [
        "storage",
        "tabs"
    ],
    "short_name": "devicon",
    "version": "1.5.0"
}