Removes Taboola
Removes those Taboola adverts - THE BANE OF MY LIFE!!
Removes Taboolaคืออะไร?
Removes Taboola เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jon และคุณลักษณะหลักของมันคือ "Removes those Taboola adverts - THE BANE OF MY LIFE!!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Removes Taboola
ดาวน์โหลดไฟล์ส่วนขยาย Removes Taboola ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
I created this extension because I was fed up with great sites going down the gutter because they added those annoying click-bait adverts. This extension is simple (but awesome), it removes those annoying Taboola adverts. Thanks for the support everyone. Please help spread the word so that one day, Taboola will be no more! Also, if you notice my awesome extension failing to exterminate the enemy on a web page then please let me know so that I can upgrade my extension's weaponry. Update History: 1.5 (02 October 2015) === I've improved the targeting of Taboola areas. In some cases it was removing the entire page. 1.4 (01 October 2015) === Removes multiple Taboola advert areas, instead of just the first one it finds. No idea why I didn't do this from the start! Intersects and blocks all traffic to the Taboola servers. The added benefit of this is that it will increase your page load speed. 1.3 === Removes AdSpace as well 1.2 === Bug fixes 1.2 === Bug fixes 1.1 === Release
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | ajdhffnbdccpannhhpeclanoojjloech |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/removes-taboola/ajdhffnbdccpannhhpeclanoojjloech |
คำอธิบาย | Removes those Taboola adverts - THE BANE OF MY LIFE!! |
ขนาดไฟล์ | 174 KB |
จำนวนการติดตั้ง | 10,000 |
เวอร์ชันปัจจุบัน | 1.5 |
อัปเดตครั้งล่าสุด | 2015-11-27 |
วันที่เผยแพร่ | 2015-11-27 |
คะแนน | 4.50/5 รวมทั้งหมด 315 คะแนน |
ผู้พัฒนา | Jon |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Removes Taboola", "description": "Removes those Taboola adverts - THE BANE OF MY LIFE!!", "version": "1.5", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "tabs", "*:\/\/*\/*", "webRequest", "webRequestBlocking" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "taboola_remove_all_dom_elements.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "taboola_block_web_request.js" ] }, "browser_action": { "default_popup": "options.html" }, "manifest_version": 2 } |