HN Blocklist

This extension allows you to block users on Hacker News.

Wat is HN Blocklist?

HN Blocklist is een Chrome-extensie ontwikkeld door https://www.morgante.net, en de belangrijkste functie is "This extension allows you to block users on Hacker News.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie HN Blocklist

Download HN Blocklist-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam HN Blocklist HN Blocklist
ID cgphkkepnnepcjnjgboihccobkjoecoc
Officiële URL https://chromewebstore.google.com/detail/hn-blocklist/cgphkkepnnepcjnjgboihccobkjoecoc
Beschrijving This extension allows you to block users on Hacker News.
Bestandsgrootte 22.6 KB
Aantal Installaties 79
Huidige Versie 0.0.1
Laatst Bijgewerkt 2015-08-04
Publicatiedatum 2015-08-03
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar https://www.morgante.net
Betalingswijze free
Extensiewebsite https://github.com/morgante/hn_blocklist
Help Pagina-URL https://github.com/morgante/hn_blocklist
Ondersteunde Talen 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"
    }
}