Service Worker Detector
This extension detects if a website registers a Service Worker.
什么是Service Worker Detector?
Service Worker Detector是由https://blog.tomayac.com开发的Chrome扩展程序,该扩展的主要功能是“This extension detects if a website registers a Service Worker.”。
扩展截图
下载Service Worker Detector扩展crx文件
下载Service Worker Detector扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
👷 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": [ " |