Google Music Visualizer
An audio visualizer for Google Play Music.
Что такое Google Music Visualizer?
Google Music Visualizer - это расширение Chrome, разработанное Zhiwen Huang, и его основная функция - "An audio visualizer for Google Play Music.".
Снимки экрана расширения
Скачать файл CRX расширения Google Music Visualizer
Скачайте файлы расширений Google Music Visualizer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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
Основная информация о расширении
Название | |
ID | johpjbomefnepibfaklpjjcidhpabdnf |
Официальный URL | https://chrome.google.com/webstore/detail/google-music-visualizer/johpjbomefnepibfaklpjjcidhpabdnf |
Описание | An audio visualizer for Google Play Music. |
Размер файла | 182 KB |
Количество установок | 837 |
Текущая Версия | 1.2.9 |
Последнее Обновление | 2019-06-03 |
Дата публикации | 2019-06-03 |
Рейтинг | 4.46/5 Всего 13 оценок |
Разработчик | Zhiwen Huang |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | 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" ] } ] } |