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."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Service Worker Detector 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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": [
                ""
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "minimum_chrome_version": "40"
}