Clickbait Killer
Attempts to remove clickbait 'listicles' (from the likes of Taboola, Revcontent etc) from any web page you visit.
Co je Clickbait Killer?
Clickbait Killer je rozšíření Chrome vyvinuté Adam Hey, a jeho hlavní funkcí je „Attempts to remove clickbait 'listicles' (from the likes of Taboola, Revcontent etc) from any web page you visit.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Clickbait Killer
Stáhněte si soubory rozšíření Clickbait Killer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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'
Základní Informace o Rozšíření
Název | Clickbait Killer |
ID | ekeenfdgilfphjgpaimhingjekdnifhb |
Oficiální URL | https://chromewebstore.google.com/detail/clickbait-killer/ekeenfdgilfphjgpaimhingjekdnifhb |
Popis | Attempts to remove clickbait 'listicles' (from the likes of Taboola, Revcontent etc) from any web page you visit. |
Velikost souboru | 108 KB |
Počet instalací | 1,465 |
Aktuální Verze | 0.4 |
Poslední Aktualizace | 2019-01-14 |
Datum Vydání | 2019-01-13 |
Hodnocení | 3.86/5 Celkem 22 Hodnocení |
Vývojář | Adam Hey |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | http://adamhey.blogspot.com/2017/01/clickbait-killer.html |
Podporované Jazyky | 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" ] } ] } |