AudibleHero for Audible
Find missing books from your series on www.audible.com
AudibleHero for Audibleคืออะไร?
AudibleHero for Audible เป็นส่วนขยายของ Chrome ที่พัฒนาโดย eirikb และคุณลักษณะหลักของมันคือ "Find missing books from your series on www.audible.com"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย AudibleHero for Audible
ดาวน์โหลดไฟล์ส่วนขยาย AudibleHero for Audible ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" ] } |