Audio Analyser Extension

Analyses the audio of the current tab and draws the audio frequencies on a canvas.

ما هو Audio Analyser Extension؟

Audio Analyser Extension هو إضافة Chrome تم تطويرها بواسطة linuscedergren، والميزة الرئيسية لها هي "Analyses the audio of the current tab and draws the audio frequencies on a canvas.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Audio Analyser Extension

قم بتنزيل ملفات الامتداد Audio Analyser Extension بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
    }
}