Google Music Visualizer
An audio visualizer for Google Play Music.
什麼是Google Music Visualizer?
Google Music Visualizer是由Zhiwen Huang開發的Chrome擴展程式,該擴展的主要功能是“An audio visualizer for Google Play Music.”。
擴展截圖
下載Google Music Visualizer擴展crx文件
下載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 |
官方網址 | 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" ] } ] } |