YouTube Customizer
Customize your YouTube.
什么是YouTube Customizer?
YouTube Customizer是由Nibito开发的Chrome扩展程序,该扩展的主要功能是“Customize your YouTube.”。
扩展截图
下载YouTube Customizer扩展crx文件
下载YouTube Customizer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Improve your video watching experience. Hide unnecessary elements on the page or within the player with this easy-to-use extension. With this extension now you can: - hide 'Share', 'Info', 'Watch more' buttons, - hide 'More videos' panel - make the title smaller, - enable full-screen mode on pages without this option. On YouTube page you can: - hide up next panel and comments, - disable autoplay. More options in the future.
扩展基本信息
名称 | YouTube Customizer |
ID | jjdpifbhmmdnkmndomeokjgnilcimoaj |
官方URL | https://chromewebstore.google.com/detail/youtube-customizer/jjdpifbhmmdnkmndomeokjgnilcimoaj |
简介 | Customize your YouTube. |
文件大小 | 41.9 KB |
安装次数 | 585 |
当前版本 | 1.4.1 |
更新时间 | 2023-10-09 |
上架时间 | 2021-06-08 |
评分 | 3.67/5 共3次评分 |
开发者 | Nibito |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://nibito.com/?ref=youtube_customizer |
帮助页面URL | https://nibito.com |
隐私政策页面URL | https://nibito.com/privacy-policy?ref=chrome-store |
支持的语言 | en,pl |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Customizer", "version": "1.4.1", "description": "__MSG_extensionDescription__", "default_locale": "en", "icons": { "16": "resources\/icons\/icon_16.png", "18": "resources\/icons\/icon_18.png", "19": "resources\/icons\/icon_19.png", "32": "resources\/icons\/icon_32.png", "48": "resources\/icons\/icon_48.png", "64": "resources\/icons\/icon_64.png", "128": "resources\/icons\/icon_128.png" }, "browser_action": { "default_icon": { "16": "resources\/icons\/icon_16.png", "18": "resources\/icons\/icon_18.png", "19": "resources\/icons\/icon_19.png", "32": "resources\/icons\/icon_32.png", "48": "resources\/icons\/icon_48.png" }, "default_title": "YouTube Customizer", "default_popup": "popup\/popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*\/*" ], "all_frames": true, "js": [ "shared.js", "inject.js" ], "css": [ "resources\/skin\/injectStyle.css" ] } ], "permissions": [ "storage" ] } |