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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mathiasrw และคุณลักษณะหลักของมันคือ "Do you ever wish you could filter Hacker News to avoid the noise? This extension will filter stories from domains that - per…"

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย No Noise Hacker News

ดาวน์โหลดไฟล์ส่วนขยาย No Noise Hacker News ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    }
}