Chrome Audio Capture

This extension captures the audio on the current tab and saves the output file on your computer when the capture is complete

Chrome Audio Capture क्या है?

Chrome Audio Capture webaudiocapture द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension captures the audio on the current tab and saves the output file on your computer when the capture is complete"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Chrome Audio Capture एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Chrome Audio Capture is a Chrome extension that allows users to record any audio playing on the current tab. Multiple tabs can be recorded simultaneously. Recordings can be saved as either .mp3 or .wav files. Users will have the option to mute tabs that are currently being recorded.

To begin recording on a tab simply click on the extension icon and use the interface or hotkeys to start and stop the recording. Once the recording is stopped or when the time limit is reached, a new tab will be opened for you to save and name your audio file. Make sure to save your file before closing the tab, otherwise the file will be lost! Check the options page for different output file formats and other features!

If you enjoyed the extension, please leave a review on the extension page! Please report any bugs or suggestions using the support tab of the extension page.

Note: Currently recordings are limited to 20 minutes due to Chrome memory constraints. Limit can be bypassed, but it is not recommended as more testing is required to determine the maximum time for lower quality settings.

Version History:

version 1.1.1 - Some fixes improvements

version 1.1.0 - The long awaited MP3 update! Along with other new features and improvements

version 1.0.6 - Various bug fixes and better hotkey display

version 1.0.5 - Fixed keyboard shortcuts mac

version 1.0.3 - Reduced max capture time to 20 minutes. Bug fixes.

version 1.0.2 - Added timeout function, set max capture time to 25 minutes. Disabled recording on YouTube due to copyright.                    

एक्सटेंशन की मूल जानकारी

नाम Chrome Audio Capture Chrome Audio Capture
ID kfokdmfpdnokpmpbjhjbcabgligoelgp
आधिकारिक URL https://chromewebstore.google.com/detail/chrome-audio-capture/kfokdmfpdnokpmpbjhjbcabgligoelgp
विवरण This extension captures the audio on the current tab and saves the output file on your computer when the capture is complete
फ़ाइल का आकार 154 KB
स्थापना संख्या 638,506
वर्तमान संस्करण 1.1.2
अंतिम अपडेट 2021-09-14
प्रकाशन तिथि 2017-06-04
रेटिंग 4.39/5 कुल 2256 रेटिंग्स
डेवलपर webaudiocapture
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/arblast/Chrome-Audio-Capturer
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chrome Audio Capture",
    "description": "This extension captures the audio on the current tab and saves the output file on your computer when the capture is complete",
    "version": "1.1.2",
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Open Chrome Audio Capture interface"
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js",
            "worker.js"
        ],
        "persistent": true
    },
    "permissions": [
        "tabCapture",
        "downloads",
        "storage"
    ],
    "commands": {
        "start": {
            "suggested_key": {
                "default": "Ctrl+Shift+S",
                "mac": "Command+Shift+U"
            },
            "description": "Start Capture"
        },
        "stop": {
            "suggested_key": {
                "default": "Ctrl+Shift+X",
                "mac": "MacCtrl+Shift+X"
            },
            "description": "Stop Capture"
        }
    }
}