AudioPick

Pick a preferred audio output device for HTML5 audio and video elements

Τι είναι το AudioPick;

Το AudioPick είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://rain-fighters.net, και η κύρια λειτουργία του είναι "Pick a preferred audio output device for HTML5 audio and video elements".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης AudioPick

Λήψη αρχείων επέκτασης AudioPick σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        AudioPick allows to pick a preferred audio output device that is used when a chrome tab is playing HTML5 audio or video over HTTPS.

The extension finds HTML5 audio and video elements within the document tree and manipulates the "sinkId"` in order to switch to the preferred audio output device. Since version 0.3.8 it also finds Audio, Video and AudioContext objects that have not been inserted into the document tree, e. g. Spotify and SoundCloud should now work with the extension, too.

Since it's now possible to store/remember a preferred audio output device per domain, the extension's option panel and hence the option to set a global preferred device (for the browser) has been removed.

Note that the "Media Capture and Streams API" requires media (microphone) permissions to be granted to every site with audio sinks that need to be manipulated, which - as a result - allows those sites to access your microphone. Hence AudioPick only acquires permission when the user actually picks a non-default device for a site and restores permissions when the user reverts back to using the default. Since version 0.3.10 a "smartMicAccess" mode can be activated in the UI which further reduces the number of microphone permissions granted by the extension.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα AudioPick AudioPick
ID gfhcppdamigjkficnjnhmnljljhagaha
Επίσημο URL https://chromewebstore.google.com/detail/audiopick/gfhcppdamigjkficnjnhmnljljhagaha
Περιγραφή Pick a preferred audio output device for HTML5 audio and video elements
Μέγεθος Αρχείου 36.38 KB
Αριθμός Εγκαταστάσεων 82,537
Τρέχουσα Έκδοση 0.3.10
Τελευταία Ενημέρωση 2024-01-26
Ημερομηνία Δημοσίευσης 2017-04-18
Αξιολόγηση 3.86/5 Συνολικά 477 Αξιολογήσεις
Προγραμματιστής https://rain-fighters.net
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://rain-fighters.github.io/AudioPick/
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/rain-fighters/AudioPick/issues
URL της Σελίδας Πολιτικής Απορρήτου https://rain-fighters.github.io/AudioPick
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "AudioPick",
    "short_name": "AudioPick",
    "description": "Pick a preferred audio output device for HTML5 audio and video elements",
    "author": "[email protected]",
    "homepage_url": "https:\/\/rain-fighters.github.io\/AudioPick\/",
    "version": "0.3.10",
    "version_name": "0.3.10",
    "action": {
        "default_icon": {
            "16": "APV3_Icon_2d_2c_16.png",
            "32": "APV3_Icon_2d_2c_32.png",
            "48": "APV3_Icon_2d_2c_48.png",
            "128": "APV3_Icon_2d_2c_128.png"
        },
        "default_title": "AudioPick",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "APV3_Icon_2d_2c_16.png",
        "32": "APV3_Icon_2d_2c_32.png",
        "48": "APV3_Icon_2d_2c_48.png",
        "128": "APV3_Icon_2d_2c_128.png"
    },
    "host_permissions": [
        "https:\/\/*\/*"
    ],
    "background": {
        "service_worker": "worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "main.js"
            ],
            "world": "MAIN",
            "all_frames": false
        },
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "world": "ISOLATED",
            "all_frames": false
        }
    ],
    "permissions": [
        "contentSettings",
        "storage",
        "scripting",
        "activeTab",
        "favicon"
    ]
}