AudioXout

Choose a default audio output device.

Apa itu AudioXout?

AudioXout adalah ekstensi Chrome yang dikembangkan oleh goodrobot, dan fitur utamanya adalah "Choose a default audio output device.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi AudioXout

Unduh file ekstensi AudioXout dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        AudioXout

Features: AudioXout is now able to remember and retain the previously chosen sound output.

Purpose: choose a default audio output device in Chrome for media playback. 

How to: Click on the extension icon and choose the output device on the website you want to play audio out of. 

Note: you will need to authorize the microphone permission that pops up due to chrome restrictions. Once you have done so choose the device again and it will work with the current site in the open chrome tab.

I made this as a fix-up package for the currently broken "AudioPick" Extension. All credits go to the "AudioPick" developers for the original code.                    

Informasi Dasar Ekstensi

Nama AudioXout AudioXout
ID eajkfkgkmngjbpckhidaichjnjiljbbl
URL Resmi https://chromewebstore.google.com/detail/audioxout/eajkfkgkmngjbpckhidaichjnjiljbbl
Deskripsi Choose a default audio output device.
Ukuran File 29.25 KB
Jumlah Instalasi 10,448
Versi Saat Ini 1.0
Terakhir Diperbarui 2020-12-13
Tanggal Publikasi 2020-08-28
Penilaian 3.54/5 Total 74 Penilaian
Pengembang goodrobot
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://www.badrobot.app/
URL Halaman Bantuan https://www.badrobot.app/
Bahasa yang Didukung en
manifest.json
{
    "author": "BadRobot",
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "browser_action": {
        "default_icon": {
            "19": "apx_icon19.png",
            "38": "apx_icon38.png"
        },
        "default_popup": "popup.html",
        "default_title": "AudioXout current Tab"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        }
    ],
    "description": "Choose a default audio output device.",
    "homepage_url": "https:\/\/www.badrobot.app\/",
    "icons": {
        "128": "apx_icon128.png",
        "16": "apx_icon16.png",
        "19": "apx_icon19.png",
        "24": "apx_icon24.png",
        "32": "apx_icon32.png",
        "38": "apx_icon38.png",
        "48": "apx_icon48.png",
        "64": "apx_icon96.png",
        "96": "apx_icon96.png"
    },
    "manifest_version": 2,
    "minimum_chrome_version": "50.0",
    "name": "AudioXout",
    "permissions": [
        "contentSettings",
        "activeTab",
        "storage"
    ],
    "short_name": "AudioXout",
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.0",
    "version_name": "1.0"
}