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.」です。
拡張機能のスクリーンショット
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 |
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 |
Eメール | [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\/" ] } |