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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This is an extension that excludes articles whose title contains the specified word from Yahoo! News."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Y!News Excluder एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    ]
}