Audio Visualizer
An audio visualizer for online music streaming.
什麼是Audio Visualizer?
Audio Visualizer是由https://douile.github.io/Chrome-Audio-Visualizer/Home開發的Chrome擴展程式,該擴展的主要功能是“An audio visualizer for online music streaming.”。
擴展截圖
下載Audio Visualizer擴展crx文件
下載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 |
| 官方網址 | 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"
} | |