Open in Youtube Music
Add a new navigation option to open Youtube videos in Youtube Music.
什么是Open in Youtube Music?
Open in Youtube Music是由zacharysmith开发的Chrome扩展程序,该扩展的主要功能是“Add a new navigation option to open Youtube videos in Youtube Music.”。
扩展截图
下载Open in Youtube Music扩展crx文件
下载Open in Youtube Music扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Adds GUI functionality to open the current youtube video in YouTube Music 扩展基本信息
| 名称 | |
| ID | dcoopjjnhnlllfiklggkeafanfnllfnf |
| 官方URL | https://chromewebstore.google.com/detail/open-in-youtube-music/dcoopjjnhnlllfiklggkeafanfnllfnf |
| 简介 | Add a new navigation option to open Youtube videos in Youtube Music. |
| 文件大小 | 148 KB |
| 安装次数 | 21 |
| 当前版本 | 1.0 |
| 更新时间 | 2022-05-17 |
| 上架时间 | 2022-05-17 |
| 开发者 | zacharysmith |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://cutwell.github.io/open-youtube-music/ |
| 帮助页面URL | https://github.com/Cutwell/open-youtube-music |
| 支持的语言 | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Open in Youtube Music",
"version": "1.0",
"description": "Add a new navigation option to open Youtube videos in Youtube Music.",
"permissions": [
"storage"
],
"action": {
"default_icon": {
"48": "data\/img\/icon48.png",
"128": "data\/img\/icon128.png"
}
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"icons": {
"48": "data\/img\/icon48.png",
"128": "data\/img\/icon128.png"
},
"content_scripts": [
{
"js": [
"data\/js\/content.js"
],
"css": [
"data\/css\/extension.css"
],
"matches": [
"https:\/\/www.youtube.com\/*"
]
}
],
"manifest_version": 3
} | |