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文件

下載Y!News Excluder擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    ]
}