HN Blocklist
This extension allows you to block users on Hacker News.
Vad är HN Blocklist?
HN Blocklist är en Chrome-tillägg utvecklad av https://www.morgante.net, och dess huvudfunktion är "This extension allows you to block users on Hacker News.".
Tilläggsskärmbilder
Ladda ner HN Blocklist-förlängningens CRX-fil
Ladda ner HN Blocklist-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | HN Blocklist |
ID | cgphkkepnnepcjnjgboihccobkjoecoc |
Officiell webbadress | https://chromewebstore.google.com/detail/hn-blocklist/cgphkkepnnepcjnjgboihccobkjoecoc |
Beskrivning | This extension allows you to block users on Hacker News. |
Filstorlek | 22.6 KB |
Antal Installationer | 79 |
Aktuell Version | 0.0.1 |
Senast Uppdaterad | 2015-08-04 |
Publiceringsdatum | 2015-08-03 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | https://www.morgante.net |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/morgante/hn_blocklist |
Hjälpsida URL | https://github.com/morgante/hn_blocklist |
Stödda Språk | 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" } } |