Domain Whitelist
Ultimate blocker which says no to every network packet until you explicitly allow it.
Domain Whitelistคืออะไร?
Domain Whitelist เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Peta Sittek และคุณลักษณะหลักของมันคือ "Ultimate blocker which says no to every network packet until you explicitly allow it."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Domain Whitelist
ดาวน์โหลดไฟล์ส่วนขยาย Domain Whitelist ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
By default Domain Whitelist blocks everything. Everything. It's up to you to build your very customized whitelist of domains you trust. Everything else is blocked and well kept out of your browser. It's like AdBlock the other way around, completely. 🚀 Hide ads ⭐️ by blocking advertisement domains you're free of the most of those pervasive ads 🚀 Avoid tracking ⭐️ by blocking tracking domains you're protected from services which acquire information about your browsing behaviour 🚀 Load pages faster ⭐️ by blocking unnecessary domains (requests) you save a lot of traffic and make pages loading faster! 🚀 Fight procrastination ⭐️ just add facebook.com to the blocklist and... do more! 🚀 Permissions explained ⭐️ "Read and change all your data on the websites you visit": to be able to intercept HTTP request before they leave your browser Completely free and with no ads Made with ♥ by Peta Sittek
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Domain Whitelist |
ID | njkbjdmigienhoeccpigopgjmlgmdine |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/domain-whitelist/njkbjdmigienhoeccpigopgjmlgmdine |
คำอธิบาย | Ultimate blocker which says no to every network packet until you explicitly allow it. |
ขนาดไฟล์ | 201 KB |
จำนวนการติดตั้ง | 2,051 |
เวอร์ชันปัจจุบัน | 1.1.6 |
อัปเดตครั้งล่าสุด | 2017-07-25 |
วันที่เผยแพร่ | 2017-07-25 |
คะแนน | 4.21/5 รวมทั้งหมด 19 คะแนน |
ผู้พัฒนา | Peta Sittek |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้าช่วยเหลือ | https://chrome.google.com/webstore/detail/domain-blocker/njkbjdmigienhoeccpigopgjmlgmdine/support |
URL หน้านโยบายความเป็นส่วนตัว | https://www.petasittek.com/chrome-extensions-privacy-policy |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Domain Whitelist", "description": "Ultimate blocker which says no to every network packet until you explicitly allow it.", "version": "1.1.6", "icons": { "16": "icon\/icon-16.png", "32": "icon\/icon-32.png", "48": "icon\/icon-48.png", "128": "icon\/icon-128.png" }, "browser_action": { "default_icon": { "19": "icon\/icon-19.png", "38": "icon\/icon-38.png" }, "default_popup": "popup.html", "default_title": "Domain Whitelist" }, "options_ui": { "page": "options.html", "chrome_style": true }, "background": { "scripts": [ "js\/config.js", "js\/fn.js", "js\/storage-local.js", "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_start" } ], "permissions": [ "storage", "unlimitedStorage", "contextMenus", "webRequest", "webRequestBlocking", "*:\/\/*\/*" ] } |