Death to comments!
Banish comments from your internet
Qu'est-ce que Death to comments! ?
Death to comments! est une extension Chrome développée par Tom Chambers, et sa fonction principale est "Banish comments from your internet".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Death to comments!
Téléchargez les fichiers d'extension Death to comments! 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
Are you sick and tired of reading through an endless stream of vitriol and lunacy? Is your worldview being poisoned by bizarre claims and unnecessary personal attacks? Death to Comments is a chrome extension that blocks comments everywhere. Works on youtube and gakwer sites. Future features may include whitelisting. This is beta software that I made in the past hour, there may be bugs and performance issues. Please email me at [email protected] with bugs and feature requests. I will try to be responsive. Source code for the comment blocker is available at: https://github.com/tomchambers2/death_to_comments. You are welcome to contribute.
Informations de Base sur l'Extension
Nom | Death to comments! |
ID | khkoofdalhndgpihmjeabjljegaghbph |
URL Officiel | https://chromewebstore.google.com/detail/death-to-comments/khkoofdalhndgpihmjeabjljegaghbph |
Description | Banish comments from your internet |
Taille du Fichier | 4.68 KB |
Nombre d'Installations | 15 |
Version Actuelle | 0.1 |
Dernière Mise à Jour | 2014-08-20 |
Date de Publication | 2014-08-20 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Tom Chambers |
Type de Paiement | free |
Langues Prises en Charge | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Death to comments!", "description": "Banish comments from your internet", "version": "0.1", "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentscript.js" ], "run_at": "document_idle", "all_frames": false } ] } |