Death to comments!

Banish comments from your internet

Co to jest Death to comments!?

Death to comments! to rozszerzenie Chrome opracowane przez Tom Chambers, a jego główną funkcją jest „Banish comments from your internet”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Death to comments!

Pobierz pliki rozszerzeń Death to comments! w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Death to comments! Death to comments!
ID khkoofdalhndgpihmjeabjljegaghbph
Oficjalny URL https://chromewebstore.google.com/detail/death-to-comments/khkoofdalhndgpihmjeabjljegaghbph
Opis Banish comments from your internet
Rozmiar pliku 4.68 KB
Liczba instalacji 15
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2014-08-20
Data Publikacji 2014-08-20
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Tom Chambers
Typ Płatności free
Obsługiwane Języki 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
        }
    ]
}