Clickbait Killer
Attempts to remove clickbait 'listicles' (from the likes of Taboola, Revcontent etc) from any web page you visit.
Qu'est-ce que Clickbait Killer ?
Clickbait Killer est une extension Chrome développée par Adam Hey, et sa fonction principale est "Attempts to remove clickbait 'listicles' (from the likes of Taboola, Revcontent etc) from any web page you visit.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Clickbait Killer
Téléchargez les fichiers d'extension Clickbait Killer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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'
Informations de Base sur l'Extension
Nom | Clickbait Killer |
ID | ekeenfdgilfphjgpaimhingjekdnifhb |
URL Officiel | https://chromewebstore.google.com/detail/clickbait-killer/ekeenfdgilfphjgpaimhingjekdnifhb |
Description | Attempts to remove clickbait 'listicles' (from the likes of Taboola, Revcontent etc) from any web page you visit. |
Taille du Fichier | 108 KB |
Nombre d'Installations | 1,465 |
Version Actuelle | 0.4 |
Dernière Mise à Jour | 2019-01-14 |
Date de Publication | 2019-01-13 |
Évaluation | 3.86/5 Total 22 Évaluations |
Développeur | Adam Hey |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | http://adamhey.blogspot.com/2017/01/clickbait-killer.html |
Langues Prises en Charge | 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" ] } ] } |