Localhost detector
Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost.
Co to jest Localhost detector?
Localhost detector to rozszerzenie Chrome opracowane przez milan.chheda, a jego główną funkcją jest „Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Localhost detector
Pobierz pliki rozszerzeń Localhost detector w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Localhost detector |
ID | nkjfadmbkfhmkkkbgghelmjbdaenbngh |
Oficjalny URL | https://chromewebstore.google.com/detail/localhost-detector/nkjfadmbkfhmkkkbgghelmjbdaenbngh |
Opis | Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost. |
Rozmiar pliku | 37.79 KB |
Liczba instalacji | 302 |
Aktualna Wersja | 0.3 |
Ostatnia Aktualizacja | 2019-04-25 |
Data Publikacji | 2019-04-25 |
Ocena | 4.00/5 Łącznie 5 Oceny |
Deweloper | milan.chheda |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" } ] } |