Block Service Workers

Disallow to register Service Workers

What is Block Service Workers?

Block Service Workers is a Chrome extension developed by Claudio Contin, and its main feature is "Disallow to register Service Workers".

Extension Screenshots

screenshot
screenshot

Download Block Service Workers Extension CRX File

Download Block Service Workers extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Block Service Workers Block Service Workers
ID ceokjgeibfjfcboemhdpkdalankbmnej
Official URL https://chromewebstore.google.com/detail/block-service-workers/ceokjgeibfjfcboemhdpkdalankbmnej
Description Disallow to register Service Workers
File Size 112 KB
Installation Count 1,133
Current Version 1.1.0
Last Updated 2022-08-08
Publish Date 2019-09-17
Rating 4.45/5 Total 11 Ratings
Developer Claudio Contin
Email [email protected]
Payment Type free
Extension Website https://github.com/clod81/block_service_workers
Help Page URL https://github.com/clod81/block_service_workers
Supported Languages 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
        }
    ]
}