Available Reads

Displays availability of ebooks and audiobooks from your local library on GoodReads pages.

Available Readsคืออะไร?

Available Reads เป็นส่วนขยายของ Chrome ที่พัฒนาโดย rhollister และคุณลักษณะหลักของมันคือ "Displays availability of ebooks and audiobooks from your local library on GoodReads pages."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Available Reads

ดาวน์โหลดไฟล์ส่วนขยาย Available Reads ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        See your local library's ebook availability right from Goodreads! This extension adds a simple listing of copies available from Libby/Overdrive on each Goodreads review page and in your Goodreads bookshelf.

You can even add multiple libraries to search from!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Available Reads Available Reads
ID gclnfffacbjpclfenjgefpfnafmjghhk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/available-reads/gclnfffacbjpclfenjgefpfnafmjghhk
คำอธิบาย Displays availability of ebooks and audiobooks from your local library on GoodReads pages.
ขนาดไฟล์ 253 KB
จำนวนการติดตั้ง 4,841
เวอร์ชันปัจจุบัน 5.2.1
อัปเดตครั้งล่าสุด 2023-10-09
วันที่เผยแพร่ 2018-10-13
คะแนน 4.75/5 รวมทั้งหมด 99 คะแนน
ผู้พัฒนา rhollister
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://rhollister.github.io/goodreads
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Available Reads",
    "short_name": "AvailableReads",
    "version": "5.2.1",
    "manifest_version": 3,
    "description": "Displays availability of ebooks and audiobooks from your local library on GoodReads pages.",
    "homepage_url": "http:\/\/github.com\/rhollister",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "service_worker": "src\/background.js",
        "type": "module"
    },
    "options_ui": {
        "page": "src\/options\/index.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.goodreads.com\/*"
            ],
            "js": [
                "src\/goodreads_inject.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.overdrive.com\/libraries"
            ],
            "js": [
                "src\/overdrive_inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/throbber.gif",
                "icons\/icon25.png",
                "icons\/icon25-hover.png",
                "icons\/icon48.png",
                "src\/options\/index.html"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": [],
    "host_permissions": [
        "*:\/\/www.goodreads.com\/*",
        "*:\/\/*.overdrive.com\/*"
    ]
}