Localhost detector

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

O que é Localhost detector?

Localhost detector é uma extensão do Chrome desenvolvida por milan.chheda, e sua principal característica é "Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Localhost detector

Baixe arquivos de extensão Localhost detector no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Localhost detector Localhost detector
ID nkjfadmbkfhmkkkbgghelmjbdaenbngh
URL Oficial https://chromewebstore.google.com/detail/localhost-detector/nkjfadmbkfhmkkkbgghelmjbdaenbngh
Descrição Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost.
Tamanho do Arquivo 37.79 KB
Contagem de Instalações 302
Versão Atual 0.3
Última Atualização 2019-04-25
Data de Publicação 2019-04-25
Classificação 4.00/5 Total de 5 Avaliações
Desenvolvedor milan.chheda
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
        }
    ]
}