ytb not-interested button

add do-not-interest button to video.

ytb not-interested button क्या है?

ytb not-interested button huhuang03 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "add do-not-interest button to video."।

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

screenshot

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

crx प्रारूप में ytb not-interested button एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        It's boring when you want click the not-interested button in youtube website. You need click the menu button, wait for the popup menu and the click the not-interested button.

This extension is for add the not-interested button in the first level. So you can quick click and save time.

Please notice: you need logined to ytb to let this extension work. Because this extension do the *I not interested* behavior, so need ytb logined.

The source is at https://github.com/huhuang03/ytb_dni.

If you think it's useful, please conside buy me a coffe https://www.buymeacoffee.com/huhuang03                    

एक्सटेंशन की मूल जानकारी

नाम ytb not-interested button ytb not-interested button
ID okfiigkfppbpfjaiffmllkkfbpdnhofn
आधिकारिक URL https://chromewebstore.google.com/detail/ytb-not-interested-button/okfiigkfppbpfjaiffmllkkfbpdnhofn
विवरण add do-not-interest button to video.
फ़ाइल का आकार 20.93 KB
स्थापना संख्या 1,512
वर्तमान संस्करण 0.1.4
अंतिम अपडेट 2024-01-20
प्रकाशन तिथि 2021-03-18
रेटिंग 4.15/5 कुल 41 रेटिंग्स
डेवलपर huhuang03
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ytb not-interested button",
    "description": "add do-not-interest button to video.",
    "version": "0.1.4",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "add_not_interested.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "ic_not_interested_16.png",
        "32": "ic_not_interested_32.png",
        "48": "ic_not_interested_48.png",
        "128": "ic_not_interested_128.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "webNavigation",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/www.youtube.com\/"
    ]
}