Website color coding

Helps to identify which environment you are working in.

Website color coding क्या है?

Website color coding MPaans द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Helps to identify which environment you are working in."।

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

screenshot
screenshot

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

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

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

                        Need to keep track of what environment you are working in? Then this extension is for you! But how, you ask? Let me explain.

Basically, what this extension does is adding some basic HTML elements to your loaded page to help you identify the environment you are working in.

But how does it work?! There are two ways that environments are detected: 

Firstly, by a blanket match of domain names via regular expressions. Going by the default configuration this means that any site you visit that starts with "test." is getting elements added that show you a blue border at the top, and a message at the bottom right saying "Test environment". You can change the matching through the options page.

Secondly, you can specifically assign a domain to an environment by selecting it from the popup menu which you can access by clicking the extension's icon in your browser.

There are quite some options to modify the way you want to see the visual feedback of the environment you are working in. Colorbars can be set on each direction of your page, and the message telling you what environment you are in can be positioned in any corner or border (and rotated if you like).

Oh.. one more nice feature: if a site is detected as being in one of your environments, it will give you a warning if the domain (hostname) will be changed. That will help you with those pesky links on a development site that sneakily directs you to the production site!

I hope you find this useful. If you want to contribute, check out my repository at https://github.com/MPaans/chrome-extension-website-color-coding                    

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

नाम Website color coding Website color coding
ID kepaiegdbfgdhpbgilafmcpjdffepckh
आधिकारिक URL https://chromewebstore.google.com/detail/website-color-coding/kepaiegdbfgdhpbgilafmcpjdffepckh
विवरण Helps to identify which environment you are working in.
फ़ाइल का आकार 35.9 KB
स्थापना संख्या 144
वर्तमान संस्करण 1.1.1
अंतिम अपडेट 2019-10-14
प्रकाशन तिथि 2019-09-20
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर MPaans
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/MPaans/chrome-extension-website-color-coding
सहायता पृष्ठ URL https://github.com/MPaans/chrome-extension-website-color-coding/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Website color coding",
    "version": "1.1.1",
    "description": "Helps to identify which environment you are working in.",
    "icons": {
        "256": "icon.png"
    },
    "background": {
        "scripts": [
            "shared.js",
            "eventpage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "shared.js",
                "main.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_title": "Add color coding to this website",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "permissions": [
        "activeTab",
        "storage"
    ]
}