YouTube Distraction Disabler
Remove distracting video suggestions on YouTube.
什么是YouTube Distraction Disabler?
YouTube Distraction Disabler是由kaiqi.liang开发的Chrome扩展程序,该扩展的主要功能是“Remove distracting video suggestions on YouTube.”。
扩展截图
下载YouTube Distraction Disabler扩展crx文件
下载YouTube Distraction Disabler扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Just spent an hour on YouTube but still haven't got to the video that you set out to watch? Wanted to learn something on YouTube but always get distracted by your recommended feed? Fear no more, "YouTube Distraction Disabler" is here to remove all of the unrelated videos on YouTube and only show you what you want. Finally got some free time and want to deliberately procrastinate on YouTube? That's ok too, just simply click the extension icon and turn off one of the options that you choose to block. The options are "Home", "Related", "Comments" and "Notifications", which corresponds to your home feed, related videos next to the video you're currently watching, the comments down below as well as the notification bell.
扩展基本信息
名称 | YouTube Distraction Disabler |
ID | klhmhijgenkomhcobnbdnjkkefbghfab |
官方URL | https://chromewebstore.google.com/detail/youtube-distraction-disab/klhmhijgenkomhcobnbdnjkkefbghfab |
简介 | Remove distracting video suggestions on YouTube. |
文件大小 | 12.64 KB |
安装次数 | 163 |
当前版本 | 0.0.4 |
更新时间 | 2023-01-18 |
上架时间 | 2020-12-07 |
评分 | 5.00/5 共5次评分 |
开发者 | kaiqi.liang |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/Kaiqi-Liang/YouTube-Distraction-Disabler |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Distraction Disabler", "version": "0.0.4", "description": "Remove distracting video suggestions on YouTube.", "manifest_version": 2, "page_action": { "default_icon": "assets\/logo.png" }, "icons": { "128": "assets\/logo.png" }, "permissions": [ "contextMenus", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "extension.js" ], "css": [ "style.css" ], "run_at": "document_end" } ], "web_accessible_resources": [ "assets\/*.svg" ] } |