Audio Visualizer
An audio visualizer for online music streaming.
What is Audio Visualizer?
Audio Visualizer is a Chrome extension developed by https://douile.github.io/Chrome-Audio-Visualizer/Home, and its main feature is "An audio visualizer for online music streaming.".
Extension Screenshots
Download Audio Visualizer Extension CRX File
Download Audio Visualizer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | caajjjkijcgmagpdjgadkodpgnmajcej |
Official URL | https://chrome.google.com/webstore/detail/audio-visualizer/caajjjkijcgmagpdjgadkodpgnmajcej |
Description | An audio visualizer for online music streaming. |
File Size | 38.34 KB |
Installation Count | 3,596 |
Current Version | 1.26 |
Last Updated | 2020-03-26 |
Publish Date | 2020-03-23 |
Rating | 2.56/5 Total 18 Ratings |
Developer | https://douile.github.io/Chrome-Audio-Visualizer/Home |
Payment Type | free |
Extension Website | https://douile.github.io/Chrome-Audio-Visualizer/Home/ |
Help Page URL | https://discord.gg/N2TjhSA |
Privacy Policy Page URL | https://github.com/Douile/Chrome-Audio-Visualizer/blob/master/PRIVACY.md |
Supported Languages | 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" } |