Audio Converter

Convert any audio file to selected formats (i.e. mp3) inside your browser!

Audio Converterคืออะไร?

Audio Converter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย loora และคุณลักษณะหลักของมันคือ "Convert any audio file to selected formats (i.e. mp3) inside your browser!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Audio Converter

ดาวน์โหลดไฟล์ส่วนขยาย Audio Converter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Audio Converter is an add-on that helps you easily convert an audio format to another. It uses the FFmpeg library which is compiled from C and C++ language to JavaScript with Emscripten compiler. Emscripten is a source-to-source compiler that can compile native C/C++ codes to JavaScript language. Please read this Wikipedia page to get more info about the Emscripten compiler.

To work with this add-on, simply open the app UI and drag an audio file to the designated area in the app (top section). Then, type your FFmpeg command in the input area and press the - Run - button. Once the conversion is done, the link to download the audio file will be available at the bottom of the UI. Please note that conversion may take some time depending on the audio size and also the type of conversion that you choose. There are some sample commands available in the app UI which you can choose to start working with this add-on.

Note: Since this add-on runs FFmpeg in the browser, it is slower than the native FFmpeg applications/library. However, using the add-on is very easy. Simply add it to your browser and it starts to work without any additional plugins. It is only suitable for simple conversions and has a limited number of codecs.

Note: This add-on is specifically designed for "audio" conversion. If you want to convert a "video" file, please use my other add-on Video Converter (https://chrome.google.com/webstore/detail/video-converter/icmgolelmdmakliojggoobcjdbdkpipd).

To report bugs, please fill the bug report form on the addon's homepage (https://mybrowseraddon.com/audio-converter.html).                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Audio Converter Audio Converter
ID ahmgleafdlnihcbfdifidfdanbfhnjhc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/audio-converter/ahmgleafdlnihcbfdifidfdanbfhnjhc
คำอธิบาย Convert any audio file to selected formats (i.e. mp3) inside your browser!
ขนาดไฟล์ 1.5 MB
จำนวนการติดตั้ง 10,000
เวอร์ชันปัจจุบัน 0.1.5
อัปเดตครั้งล่าสุด 2023-08-16
วันที่เผยแพร่ 2020-01-07
คะแนน 3.38/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา loora
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://mybrowseraddon.com/audio-converter.html
URL หน้าช่วยเหลือ https://mybrowseraddon.com/audio-converter.html
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.5",
    "manifest_version": 3,
    "offline_enabled": true,
    "name": "Audio Converter",
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "homepage_url": "https:\/\/mybrowseraddon.com\/audio-converter.html",
    "description": "Convert any audio file to selected formats (i.e. mp3) inside your browser!",
    "commands": {
        "_execute_action": []
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Audio Converter",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    }
}