Audio Analyser Extension
Analyses the audio of the current tab and draws the audio frequencies on a canvas.
什麼是Audio Analyser Extension?
Audio Analyser Extension是由linuscedergren開發的Chrome擴展程式,該擴展的主要功能是“Analyses the audio of the current tab and draws the audio frequencies on a canvas.”。
擴展截圖
下載Audio Analyser Extension擴展crx文件
下載Audio Analyser Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension allows you to analyze the audio data of a tab and view a visualization of the audio frequencies and peak/rms in an extension popup window. To use this extension; simply open the tab/website you want to analyse and click the extension icon in the top right (next to your other extension icons). A new window will open where you can set the size of the window by using the 'window size' knob/option or by using your browsers default zoom feature. The extension will automatically start analyzing the audio stream data (if it got any audio stream data). You can only analyse one tab at a time, but you can always change website of that tab if you want to analyse a different website. Your extension settings/options are automatically saved every time you close the extension window. You can set a shortcut for this extension by going to chrome://extensions/shortcuts and setting a shortcut for the "activate extension" parameter for this extension. Keep in mind that the frequency data and the peak/rms data are not 100% accurate.
擴展基本資訊
名稱 | Audio Analyser Extension |
ID | jijcfbjaabelgalioonccjkekpegoegb |
官方網址 | https://chromewebstore.google.com/detail/audio-analyser-extension/jijcfbjaabelgalioonccjkekpegoegb |
簡介 | Analyses the audio of the current tab and draws the audio frequencies on a canvas. |
檔案大小 | 15.41 KB |
安裝次數 | 1,387 |
目前版本 | 1.4.0 |
更新時間 | 2023-01-25 |
上架時間 | 2020-11-16 |
評分 | 4.60/5 共 5 次評分 |
開發者 | linuscedergren |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Audio Analyser Extension", "version": "1.4.0", "manifest_version": 3, "description": "Analyses the audio of the current tab and draws the audio frequencies on a canvas.", "permissions": [ "storage", "tabCapture" ], "action": { "default_icon": ".\/icon.png" }, "background": { "service_worker": ".\/js\/background.js" }, "icons": { "128": ".\/icon.png" } } |