Audio Visualizer
An audio visualizer for online music streaming.
Audio Visualizer là gì?
Audio Visualizer là một tiện ích mở rộng Chrome được phát triển bởi https://douile.github.io/Chrome-Audio-Visualizer/Home, và tính năng chính của nó là "An audio visualizer for online music streaming.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Audio Visualizer
Tải xuống các tệp mở rộng Audio Visualizer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | caajjjkijcgmagpdjgadkodpgnmajcej |
URL Chính Thức | https://chrome.google.com/webstore/detail/audio-visualizer/caajjjkijcgmagpdjgadkodpgnmajcej |
Mô tả | An audio visualizer for online music streaming. |
Kích Thước Tệp | 38.34 KB |
Số Lần Cài Đặt | 3,596 |
Phiên Bản Hiện Tại | 1.26 |
Cập Nhật Lần Cuối | 2020-03-26 |
Ngày Phát Hành | 2020-03-23 |
Đánh Giá | 2.56/5 Tổng số 18 Đánh Giá |
Nhà Phát Triển | https://douile.github.io/Chrome-Audio-Visualizer/Home |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://douile.github.io/Chrome-Audio-Visualizer/Home/ |
URL Trang Trợ Giúp | https://discord.gg/N2TjhSA |
URL Trang Chính Sách Bảo Mật | https://github.com/Douile/Chrome-Audio-Visualizer/blob/master/PRIVACY.md |
Ngôn Ngữ Được Hỗ Trợ | 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" } |