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 |
公式URL | 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 |
Eメール | [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" ] } ] } |