spotify remote
get access to the spotify remote service
什么是spotify remote?
spotify remote是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“get access to the spotify remote service”。
下载spotify remote扩展crx文件
下载spotify remote扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
| 名称 | |
| ID | boidmjchelicgoeabcpblhboklbillbi |
| 官方URL | https://chromewebstore.google.com/detail/spotify-remote/boidmjchelicgoeabcpblhboklbillbi |
| 简介 | get access to the spotify remote service |
| 文件大小 | 34.42 KB |
| 安装次数 | 11 |
| 当前版本 | 0.0.5 |
| 更新时间 | 2015-12-21 |
| 上架时间 | 2015-12-20 |
| 开发者 | Unknown |
| 付费类型 | free |
| 扩展官网 | https://github.com/theyelllowdart/spotifyremote |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "spotify remote",
"description": "get access to the spotify remote service",
"version": "0.0.5",
"background": {
"scripts": [
"jquery-2.1.4.min.js",
"background.js"
],
"persistent": true
},
"permissions": [
"webRequest",
"webRequestBlocking",
"alarms",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"browser_action": {
"default_title": "spotify remote"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"content_script.js"
],
"run_at": "document_idle"
}
],
"manifest_version": 2
} | |