simpleBlock
Finally, an efficient blocker. Easy on CPU and memory.
simpleBlockคืออะไร?
simpleBlock เป็นส่วนขยายของ Chrome ที่พัฒนาโดย newbigi และคุณลักษณะหลักของมันคือ "Finally, an efficient blocker. Easy on CPU and memory."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย simpleBlock
ดาวน์โหลดไฟล์ส่วนขยาย simpleBlock ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
simpleBlock is a close variation of uBlock Origin. Currently the only difference is that the popup UI contains a global switch on/off button, instead of a whitelist-site button -- catering to users who prefer to use a global switch instead of whitelisting sites. The source code can be found at https://github.com/bigicoin/uBlock (forked from uBlock Origin). This extension is not any faster or slower than uBlock Origin in terms of performance. There is no additional features, no additional tracking. Literally the only difference is the switch button.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | simpleBlock |
ID | jhpheijfhpbkaejncokigfaihgdndjhg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/simpleblock/jhpheijfhpbkaejncokigfaihgdndjhg |
คำอธิบาย | Finally, an efficient blocker. Easy on CPU and memory. |
ขนาดไฟล์ | 1.57 MB |
จำนวนการติดตั้ง | 514 |
เวอร์ชันปัจจุบัน | 1.10.5.5 |
อัปเดตครั้งล่าสุด | 2017-01-10 |
วันที่เผยแพร่ | 2017-01-08 |
คะแนน | 3.00/5 รวมทั้งหมด 10 คะแนน |
ผู้พัฒนา | newbigi |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | id,de,en,fil,fr,nl,no,vi,tr,ca,da,et,es,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,iw,fa,mr,hi,bn,ta,te,ar,zh-CN,zh-TW,ja,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "simpleBlock", "version": "1.10.5.5", "default_locale": "en", "description": "__MSG_extShortDesc__", "icons": { "16": "img\/icon_16.png", "128": "img\/icon_128.png" }, "browser_action": { "default_icon": { "19": "img\/browsericons\/icon19.png", "38": "img\/browsericons\/icon38.png" }, "default_title": "simpleBlock", "default_popup": "popup.html" }, "author": "All uBlock Origin contributors", "background": { "page": "background.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/vapi-client.js", "js\/contentscript.js" ], "run_at": "document_start", "all_frames": true }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/scriptlets\/subscriber.js" ], "run_at": "document_idle", "all_frames": false } ], "incognito": "split", "minimum_chrome_version": "26.0", "optional_permissions": [ "file:\/\/\/*" ], "options_page": "dashboard.html", "options_ui": { "page": "options_ui.html" }, "permissions": [ "contextMenus", "privacy", "storage", "tabs", "unlimitedStorage", "webNavigation", "webRequest", "webRequestBlocking", "http:\/\/*\/*", "https:\/\/*\/*" ], "short_name": "simpleBlock", "storage": { "managed_schema": "managed_storage.json" } } |