Spotify Web Watcher
Watch over the Spotify Web Player and report the current song, artist and cover
什麼是Spotify Web Watcher?
Spotify Web Watcher是由https://orestes.io開發的Chrome擴展程式,該擴展的主要功能是“Watch over the Spotify Web Player and report the current song, artist and cover”。
擴展截圖
下載Spotify Web Watcher擴展crx文件
下載Spotify Web Watcher擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Connects to a private URL where you can display what you are playing currently on the Spotify Web Player
- Open Spotify Web Player (https://open.spotify.com)
- Log-in into Spotify
- The extension icon will turn green
- Click on the extension icon
- Copy the URL
- Use it on your streaming software (OBS/SLOBS/XPlit) as a "browser" source 擴展基本資訊
| 名稱 | |
| ID | bdmajojbomhndfchgmljkjihdpjhcefl |
| 官方網址 | https://chromewebstore.google.com/detail/spotify-web-watcher/bdmajojbomhndfchgmljkjihdpjhcefl |
| 簡介 | Watch over the Spotify Web Player and report the current song, artist and cover |
| 檔案大小 | 1.95 MB |
| 安裝次數 | 242 |
| 目前版本 | 1.1.0 |
| 更新時間 | 2022-07-08 |
| 上架時間 | 2020-05-12 |
| 開發者 | https://orestes.io |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/orestes/spotify-web-watcher |
| 說明頁面URL | https://github.com/orestes/spotify-web-watcher/issues |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Spotify Web Watcher",
"version": "1.1.0",
"description": "Watch over the Spotify Web Player and report the current song, artist and cover",
"manifest_version": 2,
"content_security_policy": "script-src 'self' https:\/\/www.gstatic.com\/ https:\/\/*.firebaseio.com https:\/\/cdn.firebase.com https:\/\/www.googleapis.com; object-src 'self'",
"permissions": [
"storage"
],
"icons": {
"16": "icons\/16x16-green.png",
"48": "icons\/48x48-green.png",
"128": "icons\/128x128-green.png"
},
"web_accessible_resources": [
"icons\/*.png"
],
"browser_action": {
"default_icon": {
"16": "icons\/48x48-white.png",
"32": "icons\/48x48-white.png",
"48": "icons\/48x48-white.png"
},
"default_title": "Spotify Web Watcher",
"default_popup": "popup.html"
},
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": [
"https:\/\/open.spotify.com\/*"
],
"js": [
"content.js"
]
}
]
} | |