Block Service Workers
Disallow to register Service Workers
Block Service Workersคืออะไร?
Block Service Workers เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Claudio Contin และคุณลักษณะหลักของมันคือ "Disallow to register Service Workers"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Block Service Workers
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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 } ] } |