Domain Control
Block unwanted content with a few clicks.
Domain Controlคืออะไร?
Domain Control เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Aigeros และคุณลักษณะหลักของมันคือ "Block unwanted content with a few clicks."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Domain Control
ดาวน์โหลดไฟล์ส่วนขยาย Domain Control ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Create your own, personal filter list with domains you want to block. ➤ See all connection requests of a website (also ads + trackers) ➤ Disable pop-ups, flashing banners or dangerous sites ➤ Speed-up loading times with reduced data usage ➤ Free the web of social media buttons and more Unlike some default list with over 10'000 entries, you are in control of what is blocked and what not. This will also result in a higher browser performance because the block list will be way smaller. Decide yourself what should be loaded, the menu shows domains to block. A click on the ✘-button disables the connection to the domain. But be careful to not block the wrong ones, most websites need resources with terms like 'cdn', 'akamai', 'cloudflare' or 'static' to function properly. Edit your filter list in the options dialog and use wildcards (*.) to block subdomains, too. Once added, reload the visited website and your filters will be active. ★ Simple, effective and fast ★ Focused on low memory usage ★ Open Source and future-proof ★ 100% Vivaldi compatible 1.0.50 - updated options dialog 1.0.47 - updated domain menu 1.0.41 - optimizations, faster code ==== Feedback is welcome! GitHub: See ➜Website link Licensed under GNU GPLv3
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | ceiohjbelbolibgeilkbblaednjngpje |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/domain-control/ceiohjbelbolibgeilkbblaednjngpje |
คำอธิบาย | Block unwanted content with a few clicks. |
ขนาดไฟล์ | 11.38 KB |
จำนวนการติดตั้ง | 421 |
เวอร์ชันปัจจุบัน | 1.0.50 |
อัปเดตครั้งล่าสุด | 2019-06-08 |
วันที่เผยแพร่ | 2019-06-08 |
คะแนน | 4.75/5 รวมทั้งหมด 8 คะแนน |
ผู้พัฒนา | Aigeros |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/Aigeros/Domain-Control |
URL หน้านโยบายความเป็นส่วนตัว | https://github.com/Aigeros/Domain-Control/blob/master/PRIVACY |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "manifest_version": 2, "name": "Domain Control", "version": "1.0.50", "description": "Block unwanted content with a few clicks.", "icons": { "128": "icon128.png", "16": "icon16.png", "48": "icon48.png" }, "browser_action": { "default_popup": "popup.html", "default_title": "Domain Control" }, "author": { "email": "aigeros.innov(a)gmail.com" }, "background": { "scripts": [ "list.js", "background.js" ] }, "options_page": "options.html", "options_ui": { "chrome_style": false, "page": "options.html" }, "minimum_chrome_version": "40.0", "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "webRequest", "webRequestBlocking", "storage", "unlimitedStorage", "contextMenus" ], "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx" } |