Y!News Excluder

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

¿Qué es Y!News Excluder?

Y!News Excluder es una extensión de Chrome desarrollada por https://noze.space, y su función principal es "This is an extension that excludes articles whose title contains the specified word from Yahoo! News.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Y!News Excluder

Descarga archivos de extensión Y!News Excluder en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Y!News Excluder Y!News Excluder
ID klgpaehfikejngcefmddoogibjibmbon
URL Oficial https://chromewebstore.google.com/detail/ynews-excluder/klgpaehfikejngcefmddoogibjibmbon
Descripción This is an extension that excludes articles whose title contains the specified word from Yahoo! News.
Tamaño del Archivo 33.54 KB
Cantidad de Instalaciones 41,983
Versión Actual 1.3.0
Última Actualización 2023-08-23
Fecha de Publicación 2020-04-24
Calificación 4.47/5 Total de 100 Calificaciones
Desarrollador https://noze.space
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
    ]
}