Audible Control
Easily control the speed of your audible audiobook in the cloud player.
Audible Control là gì?
Audible Control là một tiện ích mở rộng Chrome được phát triển bởi JWB inc, và tính năng chính của nó là "Easily control the speed of your audible audiobook in the cloud player.".
Ả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 Audible Control
Tải xuống các tệp mở rộng Audible Control 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
Use Audible Control to easily control the playback speed of your favorite audiobooks on Audible. This extension simply adds buttons that allow you to control the speed from 0.5 (half the normal speed), to 4.5x (four and half times the normal speed of playback). This extension also keeps your desired speed per audiobook!. Currently this works for the following audible sites. http://www.audible.com http://www.audible.co.uk http://www.audible.ca http://www.audible.com.au http://www.audible.co.jp http://www.audible.fr If we are missing any sites - please let us know! Note: We are not affiliated or an official Audible extension. This extension was independently developed for use with Audible.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Audible Control |
ID | glogljhklaiimlocpigpigckeipgekkm |
URL Chính Thức | https://chromewebstore.google.com/detail/audible-control/glogljhklaiimlocpigpigckeipgekkm |
Mô tả | Easily control the speed of your audible audiobook in the cloud player. |
Kích Thước Tệp | 6.6 KB |
Số Lần Cài Đặt | 2,080 |
Phiên Bản Hiện Tại | 0.2 |
Cập Nhật Lần Cuối | 2020-04-08 |
Ngày Phát Hành | 2020-04-08 |
Đánh Giá | 4.38/5 Tổng số 13 Đánh Giá |
Nhà Phát Triển | JWB inc |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Audible Control", "version": "0.2", "permissions": [ "storage" ], "description": "Easily control the speed of your audible audiobook in the cloud player.", "icons": { "16": "16.png", "48": "48.png", "128": "128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.audible.co.uk\/webplayer*", "*:\/\/*.audible.com\/webplayer*", "*:\/\/*.audible.ca\/webplayer*", "*:\/\/*.audible.com.au\/webplayer*", "*:\/\/*.audible.co.jp\/webplayer*", "*:\/\/*.audible.fr\/webplayer*", "*:\/\/*.audible.de\/webplayer*", "*:\/\/*.audible.es\/webplayer*" ], "js": [ "audible_playbackrate.js" ], "run_at": "document_end", "all_frames": true } ] } |