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 là gì?
AuRo - audio output device router là một tiện ích mở rộng Chrome được phát triển bởi ISh-, và tính năng chính của nó là "A *Chrome Extension* to pick an audio output device for HTML5 audio and video elements. In 0.3 saving deviceId for a current tab…".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng AuRo - audio output device router
Tải xuống các tệp mở rộng AuRo - audio output device router dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | AuRo - audio output device router |
ID | hglnindfakmbhhkldompfjeknfapaceh |
URL Chính Thức | https://chromewebstore.google.com/detail/auro-audio-output-device/hglnindfakmbhhkldompfjeknfapaceh |
Mô tả | A *Chrome Extension* to pick an audio output device for HTML5 audio and video elements. In 0.3 saving deviceId for a current tab… |
Kích Thước Tệp | 23.38 KB |
Số Lần Cài Đặt | 9,512 |
Phiên Bản Hiện Tại | 0.3 |
Cập Nhật Lần Cuối | 2022-07-01 |
Ngày Phát Hành | 2022-01-05 |
Đánh Giá | 4.67/5 Tổng số 30 Đánh Giá |
Nhà Phát Triển | ISh- |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/ish-/AuRo |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |