No Service Worker

Disable service workers on all websites (and whitelist desired domains).

No Service Worker란 무엇입니까?

No Service Worker은(는) leocompson에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Disable service workers on all websites (and whitelist desired domains)."입니다.

확장 프로그램 스크린샷

screenshot

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

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        No Service Worker is an extension that enables you to disable service workers on all websites.

This addon has two modes to perform the task. The first method is to unregister service workers whenever they are registered. The second method completely nullifies the service worker, so websites cannot initiate the service worker in the first place. The second method is rather aggressive and not recommended as some websites may encounter errors. There is also an option in the popup toolbar to delete the cache (window.caches). This addon has a whitelist feature to exclude certain domains. You can add a domain via the toolbar popup or from the right-click context menu within the page. If you want to turn off the addon, please open the toolbar popup and then click on the toggle button at the top left corner.

If you have a feature request or found a bug to report, please fill the bug report form on the addon's homepage (https://mybrowseraddon.com/no-service-worker.html).                    

확장 프로그램 기본 정보

이름 No Service Worker No Service Worker
ID mbhfklemgegigbfbfmfdmijkcnabgpmf
공식 URL https://chromewebstore.google.com/detail/no-service-worker/mbhfklemgegigbfbfmfdmijkcnabgpmf
설명 Disable service workers on all websites (and whitelist desired domains).
파일 크기 58.6 KB
설치 횟수 434
현재 버전 0.1.1
최근 업데이트 2023-05-24
출시 날짜 2021-07-29
평점 4.33/5 총 3 개의 평점
개발자 leocompson
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://mybrowseraddon.com/no-service-worker.html
도움말 페이지 URL https://mybrowseraddon.com/no-service-worker.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.1",
    "manifest_version": 3,
    "name": "No Service Worker",
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "homepage_url": "https:\/\/mybrowseraddon.com\/no-service-worker.html",
    "description": "Disable service workers on all websites (and whitelist desired domains).",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "No Service Worker",
        "default_popup": "data\/popup\/popup.html",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "content_scripts": [
        {
            "world": "MAIN",
            "all_frames": true,
            "matches": [
                "*:\/\/*\/*"
            ],
            "match_about_blank": true,
            "run_at": "document_start",
            "match_origin_as_fallback": true,
            "js": [
                "data\/content_script\/page_context\/inject.js"
            ]
        },
        {
            "world": "ISOLATED",
            "all_frames": true,
            "matches": [
                "*:\/\/*\/*"
            ],
            "match_about_blank": true,
            "run_at": "document_start",
            "match_origin_as_fallback": true,
            "js": [
                "data\/content_script\/inject.js"
            ]
        }
    ],
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    }
}