HN Blocklist

This extension allows you to block users on Hacker News.

Qu'est-ce que HN Blocklist ?

HN Blocklist est une extension Chrome développée par https://www.morgante.net, et sa fonction principale est "This extension allows you to block users on Hacker News.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension HN Blocklist

Téléchargez les fichiers d'extension HN Blocklist 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

                        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.                    

Informations de Base sur l'Extension

Nom HN Blocklist HN Blocklist
ID cgphkkepnnepcjnjgboihccobkjoecoc
URL Officiel https://chromewebstore.google.com/detail/hn-blocklist/cgphkkepnnepcjnjgboihccobkjoecoc
Description This extension allows you to block users on Hacker News.
Taille du Fichier 22.6 KB
Nombre d'Installations 79
Version Actuelle 0.0.1
Dernière Mise à Jour 2015-08-04
Date de Publication 2015-08-03
Évaluation 5.00/5 Total 1 Évaluations
Développeur https://www.morgante.net
Type de Paiement free
Site Web de l'Extension https://github.com/morgante/hn_blocklist
URL de la Page d'Aide https://github.com/morgante/hn_blocklist
Langues Prises en Charge 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"
    }
}