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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } ] } |