Clickbait Killer
Attempts to remove clickbait 'listicles' (from the likes of Taboola, Revcontent etc) from any web page you visit.
什麼是Clickbait Killer?
Clickbait Killer是由Adam Hey開發的Chrome擴展程式,該擴展的主要功能是“Attempts to remove clickbait 'listicles' (from the likes of Taboola, Revcontent etc) from any web page you visit.”。
擴展截圖
下載Clickbait Killer擴展crx文件
下載Clickbait Killer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Sick and tired of Taboola's "You my like" clickbait article listings on every webpage you visit? I was too, so I decided to knock together a Chrome extension to remove them. Clickbait Killer attempts to remove clickbait 'listicles' (from the likes of Taboola, Revcontent etc) from any web page you visit. Currently it only removes Taboola and Revcontent "Links from the Web" lists, but please help me expand this extension's arsenal by sending me examples of sites that contain similar clickbait ads. I'd love to hear feedback whether it's good or bad. This is just a side-project for me, but I'm keen to improve upon it where possible. UPDATE: Added 'Zergnet', 'Outbrain' and 'contentad'
擴展基本資訊
名稱 | Clickbait Killer |
ID | ekeenfdgilfphjgpaimhingjekdnifhb |
官方網址 | https://chromewebstore.google.com/detail/clickbait-killer/ekeenfdgilfphjgpaimhingjekdnifhb |
簡介 | Attempts to remove clickbait 'listicles' (from the likes of Taboola, Revcontent etc) from any web page you visit. |
檔案大小 | 108 KB |
安裝次數 | 1,465 |
目前版本 | 0.4 |
更新時間 | 2019-01-14 |
上架時間 | 2019-01-13 |
評分 | 3.86/5 共 22 次評分 |
開發者 | Adam Hey |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | http://adamhey.blogspot.com/2017/01/clickbait-killer.html |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Clickbait Killer", "version": "0.4", "manifest_version": 2, "description": "Attempts to remove clickbait 'listicles' (from the likes of Taboola, Revcontent etc) from any web page you visit.", "icons": { "48": "48.png", "128": "128.png" }, "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'", "permissions": [ "*:\/\/www.google.co.za\/*", "*:\/\/www.google-analytics.com\/*", "*:\/\/www.google.com\/*", "*:\/\/mail.google.com\/*" ], "browser_action": { "default_title": "", "default_icon": "48.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "exclude_matches": [ "http:\/\/www.google.com\/*" ], "css": [ "clickbaitkiller.css" ], "js": [ "clickbaitkiller.js", "jquery.min.js" ] } ] } |