Audio Visualizer
An audio visualizer for online music streaming.
Audio Visualizer क्या है?
Audio Visualizer https://douile.github.io/Chrome-Audio-Visualizer/Home द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An audio visualizer for online music streaming."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Audio Visualizer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
An extension to improve music experience by adding visual effects to audio streaming websites in the browser. This extension draws a bar and line visualization of the audio currently playing in a tab, in the same tab. Supported websites: > All (Accessible to extension, i.e. not local files or other extension pages) Current Visualizations: > Classic Bars (auto-resizes to frequency scale of audio) > Line Permission breakdown: • Read and change all your data on the websites that you visit This extension must have access to your website's data in order to read the audio stream and create a visualization.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | caajjjkijcgmagpdjgadkodpgnmajcej |
आधिकारिक URL | https://chrome.google.com/webstore/detail/audio-visualizer/caajjjkijcgmagpdjgadkodpgnmajcej |
विवरण | An audio visualizer for online music streaming. |
फ़ाइल का आकार | 38.34 KB |
स्थापना संख्या | 3,596 |
वर्तमान संस्करण | 1.26 |
अंतिम अपडेट | 2020-03-26 |
प्रकाशन तिथि | 2020-03-23 |
रेटिंग | 2.56/5 कुल 18 रेटिंग्स |
डेवलपर | https://douile.github.io/Chrome-Audio-Visualizer/Home |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://douile.github.io/Chrome-Audio-Visualizer/Home/ |
सहायता पृष्ठ URL | https://discord.gg/N2TjhSA |
गोपनीयता नीति पृष्ठ URL | https://github.com/Douile/Chrome-Audio-Visualizer/blob/master/PRIVACY.md |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_ext_name__", "version": "1.26", "description": "__MSG_ext_desc__", "default_locale": "en", "author": "Douile", "offline_enabled": true, "icons": { "16": "\/img\/iconon16.png", "48": "\/img\/iconon48.png", "128": "\/img\/iconon128.png" }, "permissions": [ "storage", "tabs", "tabCapture", "activeTab", "contextMenus", "*:\/\/*\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "\/js\/storage.js", "\/js\/visualizationsdata.js", "\/js\/inject.js" ], "css": [ "\/css\/inject.css" ], "run_at": "document_end" } ], "browser_action": { "default_icon": { "128": "\/img\/iconoff128.png" } }, "background": { "scripts": [ "\/js\/audioCapture.js", "\/js\/background.js" ], "persistent": true }, "options_ui": { "chrome_style": true, "page": "options.html" }, "web_accessible_resources": [ "\/img\/settings.svg" ], "homepage_url": "https:\/\/github.com\/Douile\/Chrome-Audio-Visualizer" } |