Localhost detector
Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost.
Cos'è Localhost detector?
Localhost detector è un'estensione di Chrome sviluppata da milan.chheda, e la sua funzione principale è "Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Localhost detector
Scarica i file di estensione Localhost detector in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | nkjfadmbkfhmkkkbgghelmjbdaenbngh |
| URL Ufficiale | https://chromewebstore.google.com/detail/localhost-detector/nkjfadmbkfhmkkkbgghelmjbdaenbngh |
| Descrizione | Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost. |
| Dimensione del File | 37.79 KB |
| Conteggio Installazioni | 302 |
| Versione Corrente | 0.3 |
| Ultimo Aggiornamento | 2019-04-25 |
| Data di Pubblicazione | 2019-04-25 |
| Valutazione | 4.00/5 Totale 5 Valutazioni |
| Sviluppatore | milan.chheda |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
}
]
} | |