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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 URL | 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 } ] } |