AudioXout

Choose a default audio output device.

AudioXout란 무엇입니까?

AudioXout은(는) goodrobot에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Choose a default audio output device."입니다.

확장 프로그램 스크린샷

screenshot

AudioXout 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 AudioXout AudioXout
ID eajkfkgkmngjbpckhidaichjnjiljbbl
공식 URL https://chromewebstore.google.com/detail/audioxout/eajkfkgkmngjbpckhidaichjnjiljbbl
설명 Choose a default audio output device.
파일 크기 29.25 KB
설치 횟수 10,448
현재 버전 1.0
최근 업데이트 2020-12-13
출시 날짜 2020-08-28
평점 3.54/5 총 74 개의 평점
개발자 goodrobot
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.badrobot.app/
도움말 페이지 URL https://www.badrobot.app/
지원되는 언어 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"
}