Localhost detector
Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost.
Vad är Localhost detector?
Localhost detector är en Chrome-tillägg utvecklad av milan.chheda, och dess huvudfunktion är "Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost.".
Tilläggsskärmbilder
Ladda ner Localhost detector-förlängningens CRX-fil
Ladda ner Localhost detector-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
| Namn | |
| ID | nkjfadmbkfhmkkkbgghelmjbdaenbngh |
| Officiell webbadress | https://chromewebstore.google.com/detail/localhost-detector/nkjfadmbkfhmkkkbgghelmjbdaenbngh |
| Beskrivning | Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost. |
| Filstorlek | 37.79 KB |
| Antal Installationer | 302 |
| Aktuell Version | 0.3 |
| Senast Uppdaterad | 2019-04-25 |
| Publiceringsdatum | 2019-04-25 |
| Betyg | 4.00/5 Totalt 5 Betyg |
| Utvecklare | milan.chheda |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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"
}
]
} | |