Good News

Blocks unwanted news stories from appearing in your Google News feed.

Good Newsคืออะไร?

Good News เป็นส่วนขยายของ Chrome ที่พัฒนาโดย MrSethT และคุณลักษณะหลักของมันคือ "Blocks unwanted news stories from appearing in your Google News feed."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

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

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

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

                        It blocks unwanted news stories from appearing in your Google news feed.  Add keywords and key phrases as patterns to block.  Then, any headlines or leads that contain those patterns will be hidden from view.  To restore them, either remove the pattern or click the "show" link at the top of the news feed.

Import my list as a starter -  https://pastebin.com/dh9TuPsL

What's new-
06/2018
- first word bug
- attempt to prevent overly simple keywords
05/2018 
- started handling new layout
07/2017
- much faster
- can hide notification
- works with new redesign
- added "Silent Mode"
- UI tweaks
- now applies to all regions (*://news.google.*)

It largely borrows from Personal Blocklist (by Google)

Keyword muting, trump, kardashian, block                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Good News Good News
ID ekcmgkhakdlcondlgmadpiogjnlggpne
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/good-news/ekcmgkhakdlcondlgmadpiogjnlggpne
คำอธิบาย Blocks unwanted news stories from appearing in your Google News feed.
ขนาดไฟล์ 154 KB
จำนวนการติดตั้ง 4,185
เวอร์ชันปัจจุบัน 3.11
อัปเดตครั้งล่าสุด 2019-01-31
วันที่เผยแพร่ 2019-01-31
คะแนน 4.69/5 รวมทั้งหมด 228 คะแนน
ผู้พัฒนา MrSethT
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Seth Thompson",
    "background": {
        "scripts": [
            "common.js"
        ]
    },
    "browser_action": {
        "default_icon": "images\/icon48.png",
        "default_popup": "manager.html",
        "default_title": "Good News"
    },
    "content_scripts": [
        {
            "js": [
                "common.js",
                "content_script.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "default_locale": "en",
    "description": "Blocks unwanted news stories from appearing in your Google News feed.",
    "icons": {
        "128": "images\/icon128.png",
        "16": "images\/icon16.png",
        "48": "images\/icon48.png"
    },
    "manifest_version": 2,
    "name": "Good News",
    "permissions": [
        "tabs",
        "*:\/\/*\/*"
    ],
    "version": "3.11"
}