HN Blocklist
This extension allows you to block users on Hacker News.
Was ist HN Blocklist?
HN Blocklist ist eine Chrome-Erweiterung, die von https://www.morgante.net entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows you to block users on Hacker News.".
Erweiterungsscreenshots
HN Blocklist-Erweiterungs-CRX-Datei herunterladen
Laden Sie HN Blocklist-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | HN Blocklist |
ID | cgphkkepnnepcjnjgboihccobkjoecoc |
Offizielle URL | https://chromewebstore.google.com/detail/hn-blocklist/cgphkkepnnepcjnjgboihccobkjoecoc |
Beschreibung | This extension allows you to block users on Hacker News. |
Dateigröße | 22.6 KB |
Installationsanzahl | 79 |
Aktuelle Version | 0.0.1 |
Letztes Update | 2015-08-04 |
Veröffentlichungsdatum | 2015-08-03 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | https://www.morgante.net |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/morgante/hn_blocklist |
Hilfeseite URL | https://github.com/morgante/hn_blocklist |
Unterstützte Sprachen | 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" } } |