Block Service Workers
Disallow to register Service Workers
Block Service Workersとは何ですか?
Block Service WorkersはClaudio Continによって開発されたChromeの拡張機能で、その主な機能は「Disallow to register Service Workers」です。
拡張機能のスクリーンショット
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 |
ID | ceokjgeibfjfcboemhdpkdalankbmnej |
公式URL | 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 |
Eメール | [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 } ] } |