YouTube Audio Only
Hide Contents for Audio Only on YouTube
什么是YouTube Audio Only?
YouTube Audio Only是由http://fiahfy.blogspot.com开发的Chrome扩展程序,该扩展的主要功能是“Hide Contents for Audio Only on YouTube”。
扩展截图
下载YouTube Audio Only扩展crx文件
下载YouTube Audio Only扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
* Hide playing video, thumbnails and avatars. 扩展基本信息
| 名称 | |
| ID | bcoibpphkjajfgggmbnogddhlebdhllb |
| 官方URL | https://chrome.google.com/webstore/detail/youtube-audio-only/bcoibpphkjajfgggmbnogddhlebdhllb |
| 简介 | Hide Contents for Audio Only on YouTube |
| 文件大小 | 22.59 KB |
| 安装次数 | 112 |
| 当前版本 | 0.0.10 |
| 更新时间 | 2019-09-18 |
| 上架时间 | 2019-09-18 |
| 评分 | 3.67/5 共3次评分 |
| 开发者 | http://fiahfy.blogspot.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"icons": {
"128": "assets\/icon.png"
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"https:\/\/www.youtube.com\/*"
],
"all_frames": true,
"js": [
"content-script.js"
]
}
],
"page_action": {
"default_icon": "assets\/icon.png"
},
"permissions": [
"tabs",
"https:\/\/www.youtube.com\/*"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"name": "YouTube Audio Only",
"description": "Hide Contents for Audio Only on YouTube",
"version": "0.0.10"
} | |