Death to comments!
Banish comments from your internet
Co je Death to comments!?
Death to comments! je rozšíření Chrome vyvinuté Tom Chambers, a jeho hlavní funkcí je „Banish comments from your internet“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Death to comments!
Stáhněte si soubory rozšíření Death to comments! 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í
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.
Základní Informace o Rozšíření
Název | Death to comments! |
ID | khkoofdalhndgpihmjeabjljegaghbph |
Oficiální URL | https://chromewebstore.google.com/detail/death-to-comments/khkoofdalhndgpihmjeabjljegaghbph |
Popis | Banish comments from your internet |
Velikost souboru | 4.68 KB |
Počet instalací | 15 |
Aktuální Verze | 0.1 |
Poslední Aktualizace | 2014-08-20 |
Datum Vydání | 2014-08-20 |
Hodnocení | 5.00/5 Celkem 1 Hodnocení |
Vývojář | Tom Chambers |
Typ Platby | free |
Podporované Jazyky | 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 } ] } |