Spotify Web Watcher
Watch over the Spotify Web Player and report the current song, artist and cover
Vad är Spotify Web Watcher?
Spotify Web Watcher är en Chrome-tillägg utvecklad av https://orestes.io, och dess huvudfunktion är "Watch over the Spotify Web Player and report the current song, artist and cover".
Tilläggsskärmbilder
Ladda ner Spotify Web Watcher-förlängningens CRX-fil
Ladda ner Spotify Web Watcher-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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 Grundläggande Information om Tillägg
| Namn | |
| ID | bdmajojbomhndfchgmljkjihdpjhcefl |
| Officiell webbadress | https://chromewebstore.google.com/detail/spotify-web-watcher/bdmajojbomhndfchgmljkjihdpjhcefl |
| Beskrivning | Watch over the Spotify Web Player and report the current song, artist and cover |
| Filstorlek | 1.95 MB |
| Antal Installationer | 242 |
| Aktuell Version | 1.1.0 |
| Senast Uppdaterad | 2022-07-08 |
| Publiceringsdatum | 2020-05-12 |
| Utvecklare | https://orestes.io |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/orestes/spotify-web-watcher |
| Hjälpsida URL | https://github.com/orestes/spotify-web-watcher/issues |
| Stödda Språk | 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"
]
}
]
} | |