WhiteList
Enables blocking sites according to a blacklist or whitelist.
WhiteListคืออะไร?
WhiteList เป็นส่วนขยายของ Chrome ที่พัฒนาโดย E. Goldberg และคุณลักษณะหลักของมันคือ "Enables blocking sites according to a blacklist or whitelist."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย WhiteList
ดาวน์โหลดไฟล์ส่วนขยาย WhiteList ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension enables you to control which sites can be visited in the browser. You have the option to use a whitelist, which blocks all sites not listed, or a blacklist, which allows all sites except for the ones you list. When you install the extension, you will be asked to set an administrator password. This password will be used to change the blocking options in the future. You can then go to the extension's options page, and select whether to enable blocking (it is disabled by default), whether to use a whitelist or a blacklist, and specify which URLs you want in the list. Click "save," and the sites will be blocked!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | WhiteList |
ID | eajfidjagfdheejfooghbheaimkghofa |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/whitelist/eajfidjagfdheejfooghbheaimkghofa |
คำอธิบาย | Enables blocking sites according to a blacklist or whitelist. |
ขนาดไฟล์ | 24.64 KB |
จำนวนการติดตั้ง | 611 |
เวอร์ชันปัจจุบัน | 0.0.1 |
อัปเดตครั้งล่าสุด | 2021-02-05 |
วันที่เผยแพร่ | 2021-02-04 |
คะแนน | 4.50/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | E. Goldberg |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "WhiteList", "description": "Enables blocking sites according to a blacklist or whitelist.", "version": "0.0.1", "options_page": "check-authenticated.html", "permissions": [ "storage", "tabs" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_security_policy": "script-src 'self' https:\/\/cdnjs.cloudflare.com; object-src 'self'", "icons": { "16": "icons\/favicon-16x16.png", "32": "icons\/favicon-32x32.png", "192": "icons\/android-chrome-192x192.png" }, "browser_action": { "default_icon": "icons\/favicon-32x32.png" } } |