YouTube Recommendation Decliner
Declines video recommendations from YouTube to help lessen procrastination.
YouTube Recommendation Declinerとは何ですか?
YouTube Recommendation DeclinerはAnders Steenによって開発されたChromeの拡張機能で、その主な機能は「Declines video recommendations from YouTube to help lessen procrastination.」です。
拡張機能のスクリーンショット
YouTube Recommendation Decliner拡張機能のCRXファイルをダウンロード
YouTube Recommendation Decliner拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Hides videos that are considered recommended videos. This includes the YouTube home and trending pages, as well as the related videos appearing below or to the side of video playback. Recommended videos appearing after videos are also declined. Searches, subscriptions, history, library and channels are unaffected. The point is to get the recommended videos out of sight, in order to decrease the risk of users getting stuck clicking on recommended videos for hours.
拡張機能の基本情報
名前 | YouTube Recommendation Decliner |
ID | feoddkggeangnmgoomlcdldcffoidake |
公式URL | https://chromewebstore.google.com/detail/youtube-recommendation-de/feoddkggeangnmgoomlcdldcffoidake |
説明 | Declines video recommendations from YouTube to help lessen procrastination. |
ファイルサイズ | 18.43 KB |
インストール数 | 15 |
現在のバージョン | 1.1.0 |
最終更新日 | 2020-12-14 |
公開日 | 2020-03-11 |
評価 | 5.00/5 合計 3 レビュー |
開発者 | Anders Steen |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Recommendation Decliner", "short_name": "YT Decliner", "version": "1.1.0", "manifest_version": 2, "description": "Declines video recommendations from YouTube to help lessen procrastination.", "icons": { "16": "\/images\/icon_16.png", "128": "\/images\/icon_128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "all_frames": true, "js": [ "\/js\/contentScript.js" ] } ], "browser_action": { "default_icon": "\/images\/icon_128.png", "default_popup": "\/html\/popup.html" }, "permissions": [ "storage", "tabs" ] } |