AuRo - audio output device router

A *Chrome Extension* to pick an audio output device for HTML5 audio and video elements. In 0.3 saving deviceId for a current tab…

AuRo - audio output device routerとは何ですか?

AuRo - audio output device routerはISh-によって開発されたChromeの拡張機能で、その主な機能は「A *Chrome Extension* to pick an audio output device for HTML5 audio and video elements. In 0.3 saving deviceId for a current tab…」です。

拡張機能のスクリーンショット

screenshot

AuRo - audio output device router拡張機能のCRXファイルをダウンロード

AuRo - audio output device router拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        A *Chrome Extension* to pick an audio output device for HTML5 audio and video elements.

In 0.3 saving deviceId for a current tab domain became possible.

## How it works
The extension patches HTML5 audio and video .play() method and manipulates the `sinkId` in order to switch to the desired audio output device.
It also does not and will never work with AudioContext cause setSinkId() is not implemented for it.
To not overhead every page with script injection sometimes it requires to pause/play media on initialization.                    

拡張機能の基本情報

名前 AuRo - audio output device router AuRo - audio output device router
ID hglnindfakmbhhkldompfjeknfapaceh
公式URL https://chromewebstore.google.com/detail/auro-audio-output-device/hglnindfakmbhhkldompfjeknfapaceh
説明 A *Chrome Extension* to pick an audio output device for HTML5 audio and video elements. In 0.3 saving deviceId for a current tab…
ファイルサイズ 23.38 KB
インストール数 9,512
現在のバージョン 0.3
最終更新日 2022-07-01
公開日 2022-01-05
評価 4.67/5 合計 30 レビュー
開発者 ISh-
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/ish-/AuRo
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AuRo - audio output device router",
    "short_name": "AuRo",
    "description": "",
    "author": "",
    "homepage_url": "https:\/\/github.com\/ish-\/AuRo",
    "version": "0.3",
    "version_name": "0.3",
    "minimum_chrome_version": "63.0",
    "browser_action": {
        "default_icon": {
            "128": "Icon128.png"
        },
        "default_title": "AuRo - choose your audio output device",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "Icon128.png"
    },
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "tabs"
    ]
}