AudioXout
Choose a default audio output device.
AudioXout क्या है?
AudioXout goodrobot द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Choose a default audio output device."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में AudioXout एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
AudioXout Features: AudioXout is now able to remember and retain the previously chosen sound output. Purpose: choose a default audio output device in Chrome for media playback. How to: Click on the extension icon and choose the output device on the website you want to play audio out of. Note: you will need to authorize the microphone permission that pops up due to chrome restrictions. Once you have done so choose the device again and it will work with the current site in the open chrome tab. I made this as a fix-up package for the currently broken "AudioPick" Extension. All credits go to the "AudioPick" developers for the original code.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | eajkfkgkmngjbpckhidaichjnjiljbbl |
आधिकारिक URL | https://chromewebstore.google.com/detail/audioxout/eajkfkgkmngjbpckhidaichjnjiljbbl |
विवरण | Choose a default audio output device. |
फ़ाइल का आकार | 29.25 KB |
स्थापना संख्या | 10,448 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2020-12-13 |
प्रकाशन तिथि | 2020-08-28 |
रेटिंग | 3.54/5 कुल 74 रेटिंग्स |
डेवलपर | goodrobot |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://www.badrobot.app/ |
सहायता पृष्ठ URL | https://www.badrobot.app/ |
समर्थित भाषाएँ | en |
manifest.json | |
{ "author": "BadRobot", "background": { "page": "background.html", "persistent": true }, "browser_action": { "default_icon": { "19": "apx_icon19.png", "38": "apx_icon38.png" }, "default_popup": "popup.html", "default_title": "AudioXout current Tab" }, "content_scripts": [ { "all_frames": true, "js": [ "content.js" ], "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ] } ], "description": "Choose a default audio output device.", "homepage_url": "https:\/\/www.badrobot.app\/", "icons": { "128": "apx_icon128.png", "16": "apx_icon16.png", "19": "apx_icon19.png", "24": "apx_icon24.png", "32": "apx_icon32.png", "38": "apx_icon38.png", "48": "apx_icon48.png", "64": "apx_icon96.png", "96": "apx_icon96.png" }, "manifest_version": 2, "minimum_chrome_version": "50.0", "name": "AudioXout", "permissions": [ "contentSettings", "activeTab", "storage" ], "short_name": "AudioXout", "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "1.0", "version_name": "1.0" } |