HN Blocklist
This extension allows you to block users on Hacker News.
ما هو HN Blocklist؟
HN Blocklist هو إضافة Chrome تم تطويرها بواسطة https://www.morgante.net، والميزة الرئيسية لها هي "This extension allows you to block users on Hacker News.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة HN Blocklist
قم بتنزيل ملفات الامتداد HN Blocklist بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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.
معلومات أساسية عن التمديد
الاسم | HN Blocklist |
ID | cgphkkepnnepcjnjgboihccobkjoecoc |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/hn-blocklist/cgphkkepnnepcjnjgboihccobkjoecoc |
الوصف | This extension allows you to block users on Hacker News. |
حجم الملف | 22.6 KB |
عدد التثبيتات | 79 |
النسخة الحالية | 0.0.1 |
آخر تحديث | 2015-08-04 |
تاريخ النشر | 2015-08-03 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | https://www.morgante.net |
نوع الدفع | free |
موقع الإضافة | https://github.com/morgante/hn_blocklist |
عنوان صفحة المساعدة | https://github.com/morgante/hn_blocklist |
اللغات المدعومة | 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" } } |