HN Blocklist

This extension allows you to block users on Hacker News.

Cos'è HN Blocklist?

HN Blocklist è un'estensione di Chrome sviluppata da https://www.morgante.net, e la sua funzione principale è "This extension allows you to block users on Hacker News.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione HN Blocklist

Scarica i file di estensione HN Blocklist in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        While Hacker News is in general a great community, sometimes certain users consistently rub you the wrong way. This extension allows you to avoid long arguments by blocking said users.

Within comment threads, a new "block" button is added to block a user. Once blocked, all the user's comments are blocked across Hacker News for you. You can unblock users at any time.

The blocklist is personal to you and not shared with other users. Blocking applies only to comments, not submissions.                    

Informazioni di Base sull'Estensione

Nome HN Blocklist HN Blocklist
ID cgphkkepnnepcjnjgboihccobkjoecoc
URL Ufficiale https://chromewebstore.google.com/detail/hn-blocklist/cgphkkepnnepcjnjgboihccobkjoecoc
Descrizione This extension allows you to block users on Hacker News.
Dimensione del File 22.6 KB
Conteggio Installazioni 79
Versione Corrente 0.0.1
Ultimo Aggiornamento 2015-08-04
Data di Pubblicazione 2015-08-03
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore https://www.morgante.net
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/morgante/hn_blocklist
URL della Pagina di Aiuto https://github.com/morgante/hn_blocklist
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "HN Blocklist",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "This extension allows you to block users on Hacker News.",
    "homepage_url": "https:\/\/github.com\/morgante\/hn_blocklist",
    "permissions": [
        "storage",
        "http:\/\/news.ycombinator.com\/*",
        "https:\/\/news.ycombinator.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/news.ycombinator.com\/*",
                "https:\/\/news.ycombinator.com\/*"
            ],
            "js": [
                "src\/inject.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "128": "images\/icon128.png",
        "48": "images\/icon48.png"
    }
}