Localhost detector
Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost.
Hvad er Localhost detector?
Localhost detector er en Chrome-udvidelse udviklet af milan.chheda, og dens hovedfunktion er "Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost.".
Udvidelsesskærmbilleder
Download Localhost detector-udvidelses-CRX-fil
Download Localhost detector-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | nkjfadmbkfhmkkkbgghelmjbdaenbngh |
| Officiel URL | https://chromewebstore.google.com/detail/localhost-detector/nkjfadmbkfhmkkkbgghelmjbdaenbngh |
| Beskrivelse | Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost. |
| Filstørrelse | 37.79 KB |
| Antal Installationer | 302 |
| Nuværende Version | 0.3 |
| Senest Opdateret | 2019-04-25 |
| Udgivelsesdato | 2019-04-25 |
| Bedømmelse | 4.00/5 Samlet 5 Bedømmelser |
| Udvikler | milan.chheda |
| [email protected] | |
| Betalingsmetode | free |
| Understøttede Sprog | 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"
}
]
} | |