Y!News Excluder

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

Was ist Y!News Excluder?

Y!News Excluder ist eine Chrome-Erweiterung, die von https://noze.space entwickelt wurde, und ihr Hauptmerkmal ist "This is an extension that excludes articles whose title contains the specified word from Yahoo! News.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Y!News Excluder-Erweiterungs-CRX-Datei herunterladen

Laden Sie Y!News Excluder-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Y!News Excluder Y!News Excluder
ID klgpaehfikejngcefmddoogibjibmbon
Offizielle URL https://chromewebstore.google.com/detail/ynews-excluder/klgpaehfikejngcefmddoogibjibmbon
Beschreibung This is an extension that excludes articles whose title contains the specified word from Yahoo! News.
Dateigröße 33.54 KB
Installationsanzahl 41,983
Aktuelle Version 1.3.0
Letztes Update 2023-08-23
Veröffentlichungsdatum 2020-04-24
Bewertung 4.47/5 Insgesamt 100 Bewertungen
Entwickler https://noze.space
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}