HN Keyword Filter
Stop seeing HN stories on offending topics
HN Keyword Filter क्या है?
HN Keyword Filter Feaster Javascript Development द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Stop seeing HN stories on offending topics"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में HN Keyword Filter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 } } |