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- द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "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 फ़ाइल डाउनलोड करें

crx प्रारूप में AuRo - audio output device router एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    ]
}