Good News

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

Good News란 무엇입니까?

Good News은(는) MrSethT에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Blocks unwanted news stories from appearing in your Google News feed."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Good News 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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