ytb not-interested button

add do-not-interest button to video.

什麼是ytb not-interested button?

ytb not-interested button是由huhuang03開發的Chrome擴展程式,該擴展的主要功能是“add do-not-interest button to video.”。

擴展截圖

screenshot

下載ytb not-interested button擴展crx文件

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

擴展使用說明

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