Service Worker Detector
This extension detects if a website registers a Service Worker.
Service Worker Detector क्या है?
Service Worker Detector https://blog.tomayac.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension detects if a website registers a Service Worker."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Service Worker Detector एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
👷 This extension detects if a website registers a Service Worker [1] by reading the navigator.serviceWorker.controller property [2]. It also parses the Web App Manifest and displays the information in an accessible way. Find the source code of the extension on GitHub [3]. 🤔 Why would you want this? If you aren’t into Web development, most probably you wouldn’t. However, if you are into Web development, the extension helps you identify (unexpected) Service Worker registrations in the wild and lets you analyze their code and learn from them. 💡 Why would you use this extension and not just the amazing Chrome Developer Tools? The answer is that the extension proactively detects Service Workers before you even have to open the Developer Tools (which you probably eventually will end up doing anyway). -- [1] https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorker [2] https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerContainer/controller [3] https://github.com/google/service-worker-detector
एक्सटेंशन की मूल जानकारी
नाम | Service Worker Detector |
ID | ofdigdofloanabjcaijfidkogmejlmjc |
आधिकारिक URL | https://chromewebstore.google.com/detail/service-worker-detector/ofdigdofloanabjcaijfidkogmejlmjc |
विवरण | This extension detects if a website registers a Service Worker. |
फ़ाइल का आकार | 432 KB |
स्थापना संख्या | 1,554 |
वर्तमान संस्करण | 2.4.1 |
अंतिम अपडेट | 2023-10-04 |
प्रकाशन तिथि | 2020-06-14 |
रेटिंग | 3.67/5 कुल 6 रेटिंग्स |
डेवलपर | https://blog.tomayac.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/google/service-worker-detector |
सहायता पृष्ठ URL | https://github.com/google/service-worker-detector/issues |
गोपनीयता नीति पृष्ठ URL | https://raw.githubusercontent.com/tomayac/blogccasion/master/privacy-policy.txt |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Service Worker Detector", "short_name": "SW Detector", "description": "This extension detects if a website registers a Service Worker.", "author": "Thomas Steiner ([email protected], @tomayac)", "version": "2.4.1", "icons": { "16": "assets\/icon-female-16.png", "48": "assets\/icon-female.png", "128": "assets\/icon-female-128.png", "160": "assets\/icon-female.png", "512": "assets\/icon-female-512.png", "1024": "assets\/icon-female-1024.png" }, "page_action": { "default_icon": { "19": "assets\/icon.png", "38": "assets\/icon.png", "40": "assets\/icon.png", "160": "assets\/icon.png" }, "default_popup": "popup.html", "default_title": "\u274c\ud83d\udc77\u200d No active Service Worker found." }, "permissions": [ "activeTab" ], "content_scripts": [ { "matches": [ " |