Spotilize
A companion Chrome Extension to the Spotilize web app.
Spotilizeとは何ですか?
Spotilizeはhttps://christophergomez.devによって開発されたChromeの拡張機能で、その主な機能は「A companion Chrome Extension to the Spotilize web app.」です。
拡張機能のスクリーンショット
Spotilize拡張機能のCRXファイルをダウンロード
Spotilize拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension activates the Spotilize web app, an app built for visualizing your Spotify library. With beautiful visuals and full screen support, run this extension on a large monitor or computer hooked up to a television to really set the mood. Dance along or just listen and stare, Spotilize is here to enhance your Spotify experience.
拡張機能の基本情報
名前 | Spotilize |
ID | jidcihllhnmbjbnoijfepopdpkpgeobe |
公式URL | https://chromewebstore.google.com/detail/spotilize/jidcihllhnmbjbnoijfepopdpkpgeobe |
説明 | A companion Chrome Extension to the Spotilize web app. |
ファイルサイズ | 24.78 KB |
インストール数 | 23 |
現在のバージョン | 1.1.0 |
最終更新日 | 2023-04-01 |
公開日 | 2019-01-25 |
評価 | 3.00/5 合計 1 レビュー |
開発者 | https://christophergomez.dev |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://spotilize.uc.r.appspot.com/ |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Spotilize", "version": "1.1.0", "description": "A companion Chrome Extension to the Spotilize web app.", "permissions": [ "activeTab", "tabCapture", "tabs" ], "content_scripts": [ { "matches": [ "http:\/\/localhost:8080\/*", "https:\/\/spotilize.uc.r.appspot.com\/*" ], "js": [ "inject.js" ] } ], "icons": { "16": "images\/icon16.png", "24": "images\/icon24.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "64": "images\/icon64.png", "128": "images\/icon128.png" }, "browser_action": { "default_icon": { "16": "images\/icon16.png", "24": "images\/icon24.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "64": "images\/icon64.png", "128": "images\/icon128.png" }, "default_title": "Spotilize", "default_popup": "" }, "externally_connectable": { "matches": [ "http:\/\/localhost:8080\/*", "https:\/\/spotilize.uc.r.appspot.com\/*" ] }, "background": { "scripts": [ "background.js" ], "persistent": true }, "minimum_chrome_version": "71", "manifest_version": 2 } |