Now Playing Notifier for Spotify [unofficial]
Notify the currently playing song on Spotify. This is an unofficial extension.
Now Playing Notifier for Spotify [unofficial]とは何ですか?
Now Playing Notifier for Spotify [unofficial]はUnknownによって開発されたChromeの拡張機能で、その主な機能は「Notify the currently playing song on Spotify. This is an unofficial extension.」です。
拡張機能のスクリーンショット
Now Playing Notifier for Spotify [unofficial]拡張機能のCRXファイルをダウンロード
Now Playing Notifier for Spotify [unofficial]拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Notify the currently playing song on Spotify (open.spotify.com). **How to Use** 1. Open Spotify on Google Chrome. Then this extension will automatically run. 2. Play some music. 3. A silent notification will apear every time the music switches. **Attention** This extension just fetch song titles from HTML on Spotify, so it doesn't work when Spotify isn't opened on Chrome.
拡張機能の基本情報
名前 | Now Playing Notifier for Spotify [unofficial] |
ID | bieocankgankjnlnipolmaecmonaboja |
公式URL | https://chromewebstore.google.com/detail/now-playing-notifier-for/bieocankgankjnlnipolmaecmonaboja |
説明 | Notify the currently playing song on Spotify. This is an unofficial extension. |
ファイルサイズ | 13.54 KB |
インストール数 | 128 |
現在のバージョン | 0.0.1 |
最終更新日 | 2020-03-22 |
公開日 | 2020-03-22 |
評価 | 1.00/5 合計 3 レビュー |
開発者 | Unknown |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Now Playing Notifier for Spotify [unofficial]", "version": "0.0.1", "manifest_version": 2, "description": "Notify the currently playing song on Spotify. This is an unofficial extension.", "icons": { "16": "icon\/16x16.png", "48": "icon\/48x48.png", "128": "icon\/128x128.png" }, "permissions": [ "notifications" ], "background": { "scripts": [ "js\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/open.spotify.com\/*" ], "js": [ "js\/pagescript.js" ], "run_at": "document_start" } ] } |