Reject Service Worker

Rejects the ServiceWorker.

Reject Service Worker란 무엇입니까?

Reject Service Worker은(는) https://bugbugnow.net에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Rejects the ServiceWorker."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        This extension will deny automatic registration of service workers. Service workers who have already registered before the extension was introduced will be unregistered when they visit your site for the first time after the extension was introduced. If you want to allow service workers to register on some of your sites, you can add the domain name to the whitelist so that the service workers will not be denied registration.                    

확장 프로그램 기본 정보

이름 Reject Service Worker Reject Service Worker
ID falajmifjcihbmlokgomiklbfmgmnopd
공식 URL https://chromewebstore.google.com/detail/reject-service-worker/falajmifjcihbmlokgomiklbfmgmnopd
설명 Rejects the ServiceWorker.
파일 크기 26.31 KB
설치 횟수 6,000
현재 버전 0.7.0
최근 업데이트 2024-02-08
출시 날짜 2020-04-26
평점 4.25/5 총 8 개의 평점
개발자 https://bugbugnow.net
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.bugbugnow.net/
도움말 페이지 URL https://github.com/k08045kk/RejectServiceWorker
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "version": "0.7.0",
    "default_locale": "en",
    "author": "toshi",
    "homepage_url": "https:\/\/www.bugbugnow.net\/",
    "minimum_chrome_version": "88.0",
    "action": {
        "default_title": "__MSG_extensionName__",
        "default_popup": "\/popup\/popup.html"
    },
    "options_ui": {
        "page": "\/options\/options.html"
    },
    "content_scripts": [
        {
            "world": "ISOLATED",
            "all_frames": true,
            "matches": [
                "https:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "\/common.js",
                "\/content-script\/chrome.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "resources": [
                "\/content-script\/*.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ]
}