HN Keyword Filter
Stop seeing HN stories on offending topics
HN Keyword Filter란 무엇입니까?
HN Keyword Filter은(는) Feaster Javascript Development에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Stop seeing HN stories on offending topics"입니다.
확장 프로그램 스크린샷
HN Keyword Filter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 } } |