Spotify Web Watcher
Watch over the Spotify Web Player and report the current song, artist and cover
Qu'est-ce que Spotify Web Watcher ?
Spotify Web Watcher est une extension Chrome développée par https://orestes.io, et sa fonction principale est "Watch over the Spotify Web Player and report the current song, artist and cover".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Spotify Web Watcher
Téléchargez les fichiers d'extension Spotify Web Watcher au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Spotify Web Watcher |
ID | bdmajojbomhndfchgmljkjihdpjhcefl |
URL Officiel | https://chromewebstore.google.com/detail/spotify-web-watcher/bdmajojbomhndfchgmljkjihdpjhcefl |
Description | Watch over the Spotify Web Player and report the current song, artist and cover |
Taille du Fichier | 1.95 MB |
Nombre d'Installations | 242 |
Version Actuelle | 1.1.0 |
Dernière Mise à Jour | 2022-07-08 |
Date de Publication | 2020-05-12 |
Développeur | https://orestes.io |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/orestes/spotify-web-watcher |
URL de la Page d'Aide | https://github.com/orestes/spotify-web-watcher/issues |
Langues Prises en Charge | 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" ] } ] } |