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 |
| 官方網址 | 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
} | |