Localhost detector
Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost.
Was ist Localhost detector?
Localhost detector ist eine Chrome-Erweiterung, die von milan.chheda entwickelt wurde, und ihr Hauptmerkmal ist "Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost.".
Erweiterungsscreenshots
Localhost detector-Erweiterungs-CRX-Datei herunterladen
Laden Sie Localhost detector-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | nkjfadmbkfhmkkkbgghelmjbdaenbngh |
| Offizielle URL | https://chromewebstore.google.com/detail/localhost-detector/nkjfadmbkfhmkkkbgghelmjbdaenbngh |
| Beschreibung | Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost. |
| Dateigröße | 37.79 KB |
| Installationsanzahl | 302 |
| Aktuelle Version | 0.3 |
| Letztes Update | 2019-04-25 |
| Veröffentlichungsdatum | 2019-04-25 |
| Bewertung | 4.00/5 Insgesamt 5 Bewertungen |
| Entwickler | milan.chheda |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
}
]
} | |