Youtube Hider
This is a Chrome extension to hide videos and images on YouTube.
什么是Youtube Hider?
Youtube Hider是由Miri Ahn开发的Chrome扩展程序,该扩展的主要功能是“This is a Chrome extension to hide videos and images on YouTube.”。
扩展截图
下载Youtube Hider扩展crx文件
下载Youtube Hider扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
You can toggle a visibility of a group of Youtube elements on the list below, respectively:
- Video
- Video thumbnail
- User profile photo
Update 1.1 (2019/11/25)
- Added a button to enable or disable all checkboxes. 扩展基本信息
| 名称 | |
| ID | cnaimccmiafebfliaiefkdfmdffgmjph |
| 官方URL | https://chrome.google.com/webstore/detail/youtube-hider/cnaimccmiafebfliaiefkdfmdffgmjph |
| 简介 | This is a Chrome extension to hide videos and images on YouTube. |
| 文件大小 | 8.85 KB |
| 安装次数 | 60 |
| 当前版本 | 1.1 |
| 更新时间 | 2019-11-29 |
| 上架时间 | 2019-11-29 |
| 评分 | 4.25/5 共4次评分 |
| 开发者 | Miri Ahn |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 帮助页面URL | https://github.com/kameru/youtube-hider/issues |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Youtube Hider",
"version": "1.1",
"description": "This is a Chrome extension to hide videos and images on YouTube.",
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"hidingController.js"
]
}
],
"web_accessible_resources": [
"hide_thumb.css",
"hide_video.css",
"hide_icon.css",
"popup.js",
"hidingController.js"
],
"permissions": [
"activeTab",
"storage",
"declarativeContent"
],
"page_action": {
"default_icon": "images\/hide.png",
"default_popup": "popup.html"
},
"manifest_version": 2
} | |