Block Service Workers
Disallow to register Service Workers
Apa itu Block Service Workers?
Block Service Workers adalah ekstensi Chrome yang dikembangkan oleh Claudio Contin, dan fitur utamanya adalah "Disallow to register Service Workers".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Block Service Workers
Unduh file ekstensi Block Service Workers dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | Block Service Workers |
ID | ceokjgeibfjfcboemhdpkdalankbmnej |
URL Resmi | https://chromewebstore.google.com/detail/block-service-workers/ceokjgeibfjfcboemhdpkdalankbmnej |
Deskripsi | Disallow to register Service Workers |
Ukuran File | 112 KB |
Jumlah Instalasi | 1,133 |
Versi Saat Ini | 1.1.0 |
Terakhir Diperbarui | 2022-08-08 |
Tanggal Publikasi | 2019-09-17 |
Penilaian | 4.45/5 Total 11 Penilaian |
Pengembang | Claudio Contin |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/clod81/block_service_workers |
URL Halaman Bantuan | https://github.com/clod81/block_service_workers |
Bahasa yang Didukung | 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 } ] } |