AudibleHero for Audible
Find missing books from your series on www.audible.com
AudibleHero for Audible란 무엇입니까?
AudibleHero for Audible은(는) eirikb에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Find missing books from your series on www.audible.com"입니다.
확장 프로그램 스크린샷
AudibleHero for Audible 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
AudibleHero will help you find missing books from series you own. AudibleHero will not change any data on your audible page, it will only scrape the page for data. Open AudibleHero by clicking the AudibleHero-icon on the right side in Chrome address bar. Having issues? Email me at [email protected]
확장 프로그램 기본 정보
이름 | AudibleHero for Audible |
ID | hemgkbfmploojfhljdcpbloffgkfamlb |
공식 URL | https://chromewebstore.google.com/detail/audiblehero-for-audible/hemgkbfmploojfhljdcpbloffgkfamlb |
설명 | Find missing books from your series on www.audible.com |
파일 크기 | 157 KB |
설치 횟수 | 6,000 |
현재 버전 | 305 |
최근 업데이트 | 2022-08-04 |
출시 날짜 | 2020-06-10 |
평점 | 2.86/5 총 28 개의 평점 |
개발자 | eirikb |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "AudibleHero for Audible", "description": "Find missing books from your series on www.audible.com", "version": "305", "icons": { "16": "logo16.png", "48": "logo48.png", "128": "logo128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.audible.com\/legal\/conditions-of-use?audible=hero", "*:\/\/*.audible.com.au\/legal\/conditions-of-use?audible=hero", "*:\/\/*.audible.co.uk\/legal\/conditions-of-use?audible=hero" ], "css": [ "clear.css", "main.css" ], "js": [ "init.js", "app.js" ] } ], "web_accessible_resources": [ "app.css", "fonts\/*", "img\/*" ], "page_action": { "default_title": "AudibleHero", "default_icon": "logo128.png" }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "webRequest", "webRequestBlocking", "*:\/\/*.audible.com\/*", "tabs" ] } |