Localhost detector
Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost.
Localhost detector क्या है?
Localhost detector milan.chheda द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Localhost detector एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | Localhost detector |
ID | nkjfadmbkfhmkkkbgghelmjbdaenbngh |
आधिकारिक URL | https://chromewebstore.google.com/detail/localhost-detector/nkjfadmbkfhmkkkbgghelmjbdaenbngh |
विवरण | Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost. |
फ़ाइल का आकार | 37.79 KB |
स्थापना संख्या | 302 |
वर्तमान संस्करण | 0.3 |
अंतिम अपडेट | 2019-04-25 |
प्रकाशन तिथि | 2019-04-25 |
रेटिंग | 4.00/5 कुल 5 रेटिंग्स |
डेवलपर | milan.chheda |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | 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" } ] } |