Localhost detector
Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost.
Wat is Localhost detector?
Localhost detector is een Chrome-extensie ontwikkeld door milan.chheda, en de belangrijkste functie is "Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost.".
Extensie Screenshots
Download het CRX-bestand van de extensie Localhost detector
Download Localhost detector-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Localhost detector |
ID | nkjfadmbkfhmkkkbgghelmjbdaenbngh |
Officiële URL | https://chromewebstore.google.com/detail/localhost-detector/nkjfadmbkfhmkkkbgghelmjbdaenbngh |
Beschrijving | Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost. |
Bestandsgrootte | 37.79 KB |
Aantal Installaties | 302 |
Huidige Versie | 0.3 |
Laatst Bijgewerkt | 2019-04-25 |
Publicatiedatum | 2019-04-25 |
Beoordeling | 4.00/5 Totaal 5 Beoordelingen |
Ontwikkelaar | milan.chheda |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" } ] } |