HN Keyword Filter
Stop seeing HN stories on offending topics
HN Keyword Filterคืออะไร?
HN Keyword Filter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Feaster Javascript Development และคุณลักษณะหลักของมันคือ "Stop seeing HN stories on offending topics"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย HN Keyword Filter
ดาวน์โหลดไฟล์ส่วนขยาย HN Keyword Filter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Source Available on github Tired of seeing political stories in the HN list? Not interested in the latest JavaScript framework? Had enough of the Rust lovefest? Now you can kill stories you're not interested in before they soil your precious eyes. Instructions: 1. When you're on HN, you'll see the little YCombinator logo enable. 2. Click it and type create a comma-separated list of words into the textarea. You keywords are persisted across popup opens and browser sessions via localStorage. Those words are used to filter out unwanted stories. The filtration happens on page load and when the list is changed (debounce of 1 sec). The removed stories are printed to the console.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | HN Keyword Filter |
ID | ooablmjjcdbdjhhjkaffpbjnanonjgnm |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/hn-keyword-filter/ooablmjjcdbdjhhjkaffpbjnanonjgnm |
คำอธิบาย | Stop seeing HN stories on offending topics |
ขนาดไฟล์ | 7.31 KB |
จำนวนการติดตั้ง | 23 |
เวอร์ชันปัจจุบัน | 0.4 |
อัปเดตครั้งล่าสุด | 2017-07-19 |
วันที่เผยแพร่ | 2017-07-19 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | Feaster Javascript Development |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/ShamariFeaster/chrome-extension-hn-filter/tree/master |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "HN Keyword Filter", "version": "0.4", "default_locale": "en", "description": "Stop seeing HN stories on offending topics", "icons": { "16": "hn.png" }, "content_scripts": [ { "matches": [ "https:\/\/news.ycombinator.com\/*" ], "js": [ "contentScript.js" ] } ], "page_action": { "default_icon": "hn.png", "default_popup": "popup.html" }, "permissions": [ "tabs", "webNavigation", "declarativeContent" ], "author": "Shamari Feaster", "background": { "scripts": [ "main.js" ], "persistent": false } } |