Audible Control
Easily control the speed of your audible audiobook in the cloud player.
什麼是Audible Control?
Audible Control是由JWB inc開發的Chrome擴展程式,該擴展的主要功能是“Easily control the speed of your audible audiobook in the cloud player.”。
擴展截圖
下載Audible Control擴展crx文件
下載Audible Control擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | Audible Control |
ID | glogljhklaiimlocpigpigckeipgekkm |
官方網址 | https://chromewebstore.google.com/detail/audible-control/glogljhklaiimlocpigpigckeipgekkm |
簡介 | Easily control the speed of your audible audiobook in the cloud player. |
檔案大小 | 6.6 KB |
安裝次數 | 2,080 |
目前版本 | 0.2 |
更新時間 | 2020-04-08 |
上架時間 | 2020-04-08 |
評分 | 4.38/5 共 13 次評分 |
開發者 | JWB inc |
付費類型 | free |
支援的語言 | 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 } ] } |