Localhost detector

Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost.

What is Localhost detector?

Localhost detector is a Chrome extension developed by milan.chheda, and its main feature is "Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost.".

Extension Screenshots

screenshot

Download Localhost detector Extension CRX File

Download Localhost detector extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        It checks the following in the URL and adds the red banner:
1. "localhost"
2. "127.0.0.1"
3. "local."
4. ".local"
5. "staging."
6. ".stg"
7. "dev."
8. "test."
9. ".test"


Let me know, if you want to add any other string that should match and show the red banner.                    

Extension Basic Information

Name Localhost detector Localhost detector
ID nkjfadmbkfhmkkkbgghelmjbdaenbngh
Official URL https://chromewebstore.google.com/detail/localhost-detector/nkjfadmbkfhmkkkbgghelmjbdaenbngh
Description Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost.
File Size 37.79 KB
Installation Count 302
Current Version 0.3
Last Updated 2019-04-25
Publish Date 2019-04-25
Rating 4.00/5 Total 5 Ratings
Developer milan.chheda
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Localhost detector",
    "description": "Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost.",
    "version": "0.3",
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "local.js"
            ],
            "css": [
                "local.css"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ]
}