Localhost detector

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

Co je Localhost detector?

Localhost detector je rozšíření Chrome vyvinuté milan.chheda, a jeho hlavní funkcí je „Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Localhost detector

Stáhněte si soubory rozšíření Localhost detector ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Localhost detector Localhost detector
ID nkjfadmbkfhmkkkbgghelmjbdaenbngh
Oficiální URL https://chromewebstore.google.com/detail/localhost-detector/nkjfadmbkfhmkkkbgghelmjbdaenbngh
Popis Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost.
Velikost souboru 37.79 KB
Počet instalací 302
Aktuální Verze 0.3
Poslední Aktualizace 2019-04-25
Datum Vydání 2019-04-25
Hodnocení 4.00/5 Celkem 5 Hodnocení
Vývojář milan.chheda
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
        }
    ]
}