Reject Service Worker

Rejects the ServiceWorker.

什麼是Reject Service Worker?

Reject Service Worker是由https://bugbugnow.net開發的Chrome擴展程式,該擴展的主要功能是“Rejects the ServiceWorker.”。

擴展截圖

screenshot

下載Reject Service Worker擴展crx文件

下載Reject Service Worker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    ]
}