Localhost detector

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

Qu'est-ce que Localhost detector ?

Localhost detector est une extension Chrome développée par milan.chheda, et sa fonction principale est "Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Localhost detector

Téléchargez les fichiers d'extension Localhost detector au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Localhost detector Localhost detector
ID nkjfadmbkfhmkkkbgghelmjbdaenbngh
URL Officiel 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.
Taille du Fichier 37.79 KB
Nombre d'Installations 302
Version Actuelle 0.3
Dernière Mise à Jour 2019-04-25
Date de Publication 2019-04-25
Évaluation 4.00/5 Total 5 Évaluations
Développeur milan.chheda
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
        }
    ]
}