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 |
| 公式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"
} | |