Devicon

Shows when you are on a dev-version of a page by putting a border around the favicon.

Devicon क्या है?

Devicon Matis Lepik द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Shows when you are on a dev-version of a page by putting a border around the favicon."।

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

screenshot
screenshot

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

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

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

                        Looks at the URL of the page you're on to see if it's a dev environment and adds a border to the favicon so you can easily tell if you're on a dev environment or not.

You can change in the options what URL hostname constitutes a dev environment, by default we look for:

- localhost
- 127.0.0.1
- Sites ending with .test                    

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

नाम Devicon Devicon
ID giibkebjejbhlblmanjkmkmdkahmabge
आधिकारिक URL https://chromewebstore.google.com/detail/devicon/giibkebjejbhlblmanjkmkmdkahmabge
विवरण Shows when you are on a dev-version of a page by putting a border around the favicon.
फ़ाइल का आकार 36.68 KB
स्थापना संख्या 24
वर्तमान संस्करण 1.1.5
अंतिम अपडेट 2019-05-16
प्रकाशन तिथि 2019-05-16
डेवलपर Matis Lepik
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/MatisLepik/devicon
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Devicon",
    "version": "1.1.5",
    "manifest_version": 2,
    "description": "Shows when you are on a dev-version of a page by putting a border around the favicon.",
    "homepage_url": "http:\/\/matislepik.com\/devicon",
    "icons": {
        "16": "icons\/icon16.png",
        "19": "icons\/icon19.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "default_locale": "en",
    "options_ui": {
        "page": "options\/index.html",
        "chrome_style": false
    },
    "background": {
        "scripts": [
            "build\/bg.js"
        ]
    },
    "page_action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "19": "icons\/icon19.png",
            "48": "icons\/icon48.png",
            "128": "icons\/icon128.png"
        },
        "default_title": "Devicon"
    },
    "web_accessible_resources": [
        "assets\/overlay.png"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "build\/content.js"
            ]
        }
    ]
}