CleanTube
YouTube with less clutter.
什么是CleanTube?
CleanTube是由elliotwaite开发的Chrome扩展程序,该扩展的主要功能是“YouTube with less clutter.”。
扩展截图
下载CleanTube扩展crx文件
下载CleanTube扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension hides the following YouTube elements: • The row of recommended videos that appear when a video is paused. • The wall of recommended videos that appear at the end of a video. • Channel watermark logos that appear in the bottom right of videos. • The "Watch later" and "Add to queue" icon buttons that appear over the top right of thumbnails when they are hovered over. This extension is open source on GitHub. If you find any bugs or have any suggestions, please open an issue here: https://github.com/elliotwaite/cleantube Thanks. Enjoy!
扩展基本信息
名称 | CleanTube |
ID | kanfjhdeebkfgkbmnfknhejpadhlmiab |
官方URL | https://chromewebstore.google.com/detail/cleantube/kanfjhdeebkfgkbmnfknhejpadhlmiab |
简介 | YouTube with less clutter. |
文件大小 | 8.85 KB |
安装次数 | 1,633 |
当前版本 | 0.4 |
更新时间 | 2023-08-01 |
上架时间 | 2021-06-29 |
评分 | 3.80/5 共5次评分 |
开发者 | elliotwaite |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/elliotwaite/cleantube |
帮助页面URL | https://github.com/elliotwaite/cleantube |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "CleanTube", "version": "0.4", "description": "YouTube with less clutter.", "author": "Elliot Waite", "icons": { "128": "icon128.png" }, "browser_action": { "default_icon": "icon128.png", "default_title": "Options", "default_popup": "options.html" }, "options_ui": { "page": "options.html", "chrome_style": false }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*", "*:\/\/*.youtube-nocookie.com\/*" ], "js": [ "content.js" ], "all_frames": true } ], "permissions": [ "*:\/\/*.youtube.com\/*", "*:\/\/*.youtube-nocookie.com\/*", "storage" ] } |