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."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Audio Analyser Extension 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 Audio Analyser Extension
ID jijcfbjaabelgalioonccjkekpegoegb
공식 URL 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"
    }
}