Audio Visualizer
An audio visualizer for online music streaming.
Что такое Audio Visualizer?
Audio Visualizer - это расширение Chrome, разработанное https://douile.github.io/Chrome-Audio-Visualizer/Home, и его основная функция - "An audio visualizer for online music streaming.".
Снимки экрана расширения
Скачать файл CRX расширения Audio Visualizer
Скачайте файлы расширений Audio Visualizer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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" } |