Goodreads Ratings on Overdrive
View Goodreads ratings on Overdrive ebooks and audiobooks
Goodreads Ratings on Overdriveคืออะไร?
Goodreads Ratings on Overdrive เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://waleedzuberi.com และคุณลักษณะหลักของมันคือ "View Goodreads ratings on Overdrive ebooks and audiobooks"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Goodreads Ratings on Overdrive
ดาวน์โหลดไฟล์ส่วนขยาย Goodreads Ratings on Overdrive ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This simple browser add-on shows you the Goodreads rating of ebooks and audiobooks directly on the listing page on Overdrive library pages. No more switching tabs and searching manually! This add-on is not affiliated with Goodreads, Inc. or Overdrive, Inc. For support, please visit https://github.com/wzub/goodreads_overdrive/issues * Version 1.2 (26/1/2022) * Fix for new book page and stars on Goodreads (thanks @rubenmv) * Version 1.1.0 (8/5/2020) * Fix for Chrome CORB errors * Show rating from Goodreads as stars (thanks @rubenmv) * Improved URL matching (thanks @Foxsly) * General code cleanup * Version 1.0.2 (29/01/2018) * Chrome compatibility fixes * Version 1.0.1 (18/1/2018) * Fix error handling * Version 1.0.0 (17/1/2018) * Initial release
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Goodreads Ratings on Overdrive |
ID | ooefaoacdclhcccchjnapjlclpkeblje |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/goodreads-ratings-on-over/ooefaoacdclhcccchjnapjlclpkeblje |
คำอธิบาย | View Goodreads ratings on Overdrive ebooks and audiobooks |
ขนาดไฟล์ | 52.03 KB |
จำนวนการติดตั้ง | 635 |
เวอร์ชันปัจจุบัน | 1.2 |
อัปเดตครั้งล่าสุด | 2023-01-28 |
วันที่เผยแพร่ | 2020-05-10 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | https://waleedzuberi.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://waleedzuberi.com/code/goodreads-ratings-overdrive/ |
URL หน้าช่วยเหลือ | https://github.com/wzub/goodreads_overdrive/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "View Goodreads ratings on Overdrive ebooks and audiobooks", "manifest_version": 2, "name": "Goodreads Ratings on Overdrive", "version": "1.2", "homepage_url": "https:\/\/waleedzuberi.com\/code\/goodreads-ratings-overdrive\/", "icons": { "128": "icons\/icon_128.png", "96": "icons\/icon_96.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.overdrive.com\/*", "*:\/\/*.overdrive.com\/*\/media\/*" ], "js": [ "overdrive_goodreads.js" ], "run_at": "document_end", "css": [ "overdrive_goodreads.css" ] } ], "permissions": [ "*:\/\/*.goodreads.com\/*", "*:\/\/*.overdrive.com\/*", "*:\/\/*.overdrive.com\/*\/media\/*" ], "web_accessible_resources": [ "icons\/goodreads-icon.png" ], "page_action": { "default_icon": { "96": "icons\/icon_96.png" }, "default_title": "Goodreads Ratings on Overdrive" } } |