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…

Wat is AuRo - audio output device router?

AuRo - audio output device router is een Chrome-extensie ontwikkeld door ISh-, en de belangrijkste functie is "A *Chrome Extension* to pick an audio output device for HTML5 audio and video elements. In 0.3 saving deviceId for a current tab…".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie AuRo - audio output device router

Download AuRo - audio output device router-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam AuRo - audio output device router AuRo - audio output device router
ID hglnindfakmbhhkldompfjeknfapaceh
Officiële URL https://chromewebstore.google.com/detail/auro-audio-output-device/hglnindfakmbhhkldompfjeknfapaceh
Beschrijving A *Chrome Extension* to pick an audio output device for HTML5 audio and video elements. In 0.3 saving deviceId for a current tab…
Bestandsgrootte 23.38 KB
Aantal Installaties 9,512
Huidige Versie 0.3
Laatst Bijgewerkt 2022-07-01
Publicatiedatum 2022-01-05
Beoordeling 4.67/5 Totaal 30 Beoordelingen
Ontwikkelaar ISh-
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/ish-/AuRo
Ondersteunde Talen 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"
    ]
}