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
拡張機能の基本情報
名前 | Spotify Web Watcher |
ID | bdmajojbomhndfchgmljkjihdpjhcefl |
公式URL | 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 |
Eメール | [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" ] } ] } |