Block Service Workers

Disallow to register Service Workers

什麼是Block Service Workers?

Block Service Workers是由Claudio Contin開發的Chrome擴展程式,該擴展的主要功能是“Disallow to register Service Workers”。

擴展截圖

screenshot
screenshot

下載Block Service Workers擴展crx文件

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

擴展使用說明

                        This extension will prevent Service Workers to be registered.
You will be prompted to allow or block each individual SW, per domain.
As an example, visit: https://mdn.github.io/sw-test/
The choice will be remembered by the extension, and each individual setting can be cleared.

The project source code can be found at: https://github.com/clod81/block_service_workers
Contributors are welcome                    

擴展基本資訊

名稱 Block Service Workers Block Service Workers
ID ceokjgeibfjfcboemhdpkdalankbmnej
官方網址 https://chromewebstore.google.com/detail/block-service-workers/ceokjgeibfjfcboemhdpkdalankbmnej
簡介 Disallow to register Service Workers
檔案大小 112 KB
安裝次數 1,133
目前版本 1.1.0
更新時間 2022-08-08
上架時間 2019-09-17
評分 4.45/5 共 11 次評分
開發者 Claudio Contin
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/clod81/block_service_workers
說明頁面URL https://github.com/clod81/block_service_workers
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Block Service Workers",
    "description": "Disallow to register Service Workers",
    "version": "1.1.0",
    "icons": {
        "16": "logox16.png",
        "48": "logox48.png",
        "128": "logo.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "notifications"
    ],
    "background": {
        "scripts": [
            "confirm.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "settings.html",
        "default_icon": "logox32.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "index.js"
            ],
            "all_frames": true
        }
    ]
}