Google Music Visualizer
An audio visualizer for Google Play Music.
Co to jest Google Music Visualizer?
Google Music Visualizer to rozszerzenie Chrome opracowane przez Zhiwen Huang, a jego główną funkcją jest „An audio visualizer for Google Play Music.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Google Music Visualizer
Pobierz pliki rozszerzeń Google Music Visualizer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
An audio visualizer for Google Music! Being able to see the movement of your music makes it a lot more fun to listen to. This app features 6 color themes. To use just install, go to music.google.com, and pick a song to play! If you have any suggestions or feedback please send me an email! I'm currently actively working on this app and would love to make it better. Source code: https://github.com/zhiwenh/google-music-visualizer
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | johpjbomefnepibfaklpjjcidhpabdnf |
Oficjalny URL | https://chrome.google.com/webstore/detail/google-music-visualizer/johpjbomefnepibfaklpjjcidhpabdnf |
Opis | An audio visualizer for Google Play Music. |
Rozmiar pliku | 182 KB |
Liczba instalacji | 837 |
Aktualna Wersja | 1.2.9 |
Ostatnia Aktualizacja | 2019-06-03 |
Data Publikacji | 2019-06-03 |
Ocena | 4.46/5 Łącznie 13 Oceny |
Deweloper | Zhiwen Huang |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Google Music Visualizer", "description": "An audio visualizer for Google Play Music.", "version": "1.2.9", "icons": { "16": "icons\/icon.png", "48": "icons\/icon.png", "128": "icons\/icon.png" }, "permissions": [ "activeTab", "storage" ], "browser_action": { "default_icon": "icons\/icon.png", "default_title": "Google Music Visualizer" }, "content_scripts": [ { "matches": [ "https:\/\/play.google.com\/music\/*" ], "js": [ "scripts\/libraries\/jquery-3.0.0.min.js", "scripts\/libraries\/jquery-ui.min.js", "scripts\/libraries\/d3.min.js", "scripts\/visualizer.js", "scripts\/content.js" ] } ] } |