No Noise Hacker News

Do you ever wish you could filter Hacker News to avoid the noise? This extension will filter stories from domains that - per…

No Noise Hacker News क्या है?

No Noise Hacker News mathiasrw द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Do you ever wish you could filter Hacker News to avoid the noise? This extension will filter stories from domains that - per…"।

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में No Noise Hacker News एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Do you ever wish you could filter Hacker News to avoid the noise?

This extension will filter stories from domains that - per november 2015 - had more than than 2500 submitted stories but less than 40% had more than 3 votes. Domains with usergenerated content (as github.com or youtube.com) are not included.

Is this censoring? 
- No, this is a way of limiting domains with a high amount of noise. 

Will it hide a really interesting story?
- Yes, but any story that is number 1 will never be filtered (so if it's really good, you will still see it)

How can I see if anything is being filtered?
The sequence of numbers at the left side will skip the order of natural numbers.

I really want to see what is being filtered?
Open the page in incognito mode to avoid filtering anything. 

Can I alter the list of domains being filtered?
- Not right now, but that is where I want to go with this plugin. Please help out making the code better at https://github.com/mathiasrw/no-noise-hacker-news                    

एक्सटेंशन की मूल जानकारी

नाम No Noise Hacker News No Noise Hacker News
ID meeppdmpplgpkpgdlnhfagmplkmkjhnm
आधिकारिक URL https://chromewebstore.google.com/detail/no-noise-hacker-news/meeppdmpplgpkpgdlnhfagmplkmkjhnm
विवरण Do you ever wish you could filter Hacker News to avoid the noise? This extension will filter stories from domains that - per…
फ़ाइल का आकार 57.51 KB
स्थापना संख्या 16
वर्तमान संस्करण 0.1.0
अंतिम अपडेट 2016-08-03
प्रकाशन तिथि 2016-08-03
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर mathiasrw
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/mathiasrw/no-noise-hacker-news
सहायता पृष्ठ URL https://github.com/mathiasrw/no-noise-hacker-news/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "No Noise Hacker News",
    "version": "0.1.0",
    "permissions": [
        "https:\/\/news.ycombinator.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/news.ycombinator.com\/*"
            ],
            "js": [
                "myscript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "manifest_version": 2,
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "64": "icon64.png",
        "128": "icon128.png",
        "256": "icon256.png"
    }
}