Google Music Visualizer
An audio visualizer for Google Play Music.
Google Music Visualizer क्या है?
Google Music Visualizer Zhiwen Huang द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An audio visualizer for Google Play Music."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Google Music Visualizer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" ] } ] } |