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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ISh- และคุณลักษณะหลักของมันคือ "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

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย AuRo - audio output device router

ดาวน์โหลดไฟล์ส่วนขยาย 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-
อีเมล [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"
    ]
}