SpotifYoutube
Adds a button in Youtube that creates a new tab with Spotify.
什么是SpotifYoutube?
SpotifYoutube是由mariannelinharesm开发的Chrome扩展程序,该扩展的主要功能是“Adds a button in Youtube that creates a new tab with Spotify.”。
扩展截图
下载SpotifYoutube扩展crx文件
下载SpotifYoutube扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
SpotifYoutube is a chrome extension that connects youtube with spotify through a button that allows users to go to music videos from Youtube to musics, albums or bands in Spotify.
Project: https://github.com/mari-linhares/spotifyoutube
Like it? Show support in Chrome Web Store and also in the project repository.
Bugs? Report here: https://github.com/mari-linhares/spotifyoutube/issues 扩展基本信息
| 名称 | |
| ID | ankphgpmnicdkehhmnklhlodkfkecjbh |
| 官方URL | https://chrome.google.com/webstore/detail/spotifyoutube/ankphgpmnicdkehhmnklhlodkfkecjbh |
| 简介 | Adds a button in Youtube that creates a new tab with Spotify. |
| 文件大小 | 45.4 KB |
| 安装次数 | 213 |
| 当前版本 | 1.0.1 |
| 更新时间 | 2016-09-16 |
| 上架时间 | 2016-09-16 |
| 评分 | 4.57/5 共7次评分 |
| 开发者 | mariannelinharesm |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/mari-linhares/spotifyoutube/ |
| 帮助页面URL | https://github.com/mari-linhares/spotifyoutube/issues |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "SpotifYoutube",
"version": "1.0.1",
"homepage_url": "https:\/\/github.com\/mari-linhares\/spotifyoutube",
"manifest_version": 2,
"description": "Adds a button in Youtube that creates a new tab with Spotify.",
"icons": {
"16": "icons\/icon.png",
"48": "icons\/icon.png",
"128": "icons\/icon.png"
},
"browser_action": {
"default_icon": "icons\/icon.png",
"default_title": "Spotify button on youtube"
},
"background": {
"page": "src\/background\/background.html",
"persistent": false
},
"content_scripts": [
{
"matches": [
"https:\/\/*.youtube.com\/*"
],
"css": [
"src\/script\/script.css"
],
"js": [
"src\/libs\/jquery.js",
"src\/script\/script.js"
]
}
],
"permissions": [
"tabs",
"https:\/\/*.youtube.com\/*"
],
"web_accessible_resources": [
"src\/images\/*.png"
]
} | |