Spotilize
A companion Chrome Extension to the Spotilize web app.
Hvad er Spotilize?
Spotilize er en Chrome-udvidelse udviklet af https://christophergomez.dev, og dens hovedfunktion er "A companion Chrome Extension to the Spotilize web app.".
Udvidelsesskærmbilleder
Download Spotilize-udvidelses-CRX-fil
Download Spotilize-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Spotilize |
ID | jidcihllhnmbjbnoijfepopdpkpgeobe |
Officiel URL | https://chromewebstore.google.com/detail/spotilize/jidcihllhnmbjbnoijfepopdpkpgeobe |
Beskrivelse | A companion Chrome Extension to the Spotilize web app. |
Filstørrelse | 24.78 KB |
Antal Installationer | 23 |
Nuværende Version | 1.1.0 |
Senest Opdateret | 2023-04-01 |
Udgivelsesdato | 2019-01-25 |
Bedømmelse | 3.00/5 Samlet 1 Bedømmelser |
Udvikler | https://christophergomez.dev |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://spotilize.uc.r.appspot.com/ |
Understøttede Sprog | 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 } |