Y!News Excluder

This is an extension that excludes articles whose title contains the specified word from Yahoo! News.

Y!News Excluder란 무엇입니까?

Y!News Excluder은(는) https://noze.space에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This is an extension that excludes articles whose title contains the specified word from Yahoo! News."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Y!News Excluder 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Please forgive me for not being able to speak English.
This is an extension that excludes articles whose title contains the specified word from Yahoo! News.
You can specify multiple keywords by separating them with line breaks.

--- v1.3.0 Update 2023.8.23 ---
・Fixed to be English case sensitive
・Add optional function( https://noze.space/archives/592#option )
・Remove donation link
・Add information
・Fixed a bug that did not work on yahoo.com outside the US

--- v1.2.1 Update 2022.7.19 ---
Supports Manifest V3
Supports "yahoo.com"
Supports English
Update design

GitHub
https://github.com/web-rice/yahoo-news-excluder                    

확장 프로그램 기본 정보

이름 Y!News Excluder Y!News Excluder
ID klgpaehfikejngcefmddoogibjibmbon
공식 URL https://chromewebstore.google.com/detail/ynews-excluder/klgpaehfikejngcefmddoogibjibmbon
설명 This is an extension that excludes articles whose title contains the specified word from Yahoo! News.
파일 크기 33.54 KB
설치 횟수 41,983
현재 버전 1.3.0
최근 업데이트 2023-08-23
출시 날짜 2020-04-24
평점 4.47/5 총 100 개의 평점
개발자 https://noze.space
이메일 [email protected]
결제 유형 free
지원되는 언어 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Y!News Excluder",
    "description": "__MSG_appDesc__",
    "default_locale": "ja",
    "version": "1.3.0",
    "icons": {
        "32": "icon\/icon_32.png",
        "48": "icon\/icon_48.png",
        "128": "icon\/icon_128.png"
    },
    "action": {
        "default_icon": {
            "19": "icon\/icon_19.png"
        },
        "default_popup": "popup.html",
        "ja": {
            "default_popup": "popup_ja.html"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.yahoo.co.jp\/*",
                "*:\/\/*.yahoo.com\/*"
            ],
            "js": [
                "selectors_data.js",
                "content_scripts.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "tabs"
    ]
}