Available Reads

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

什麼是Available Reads?

Available Reads是由rhollister開發的Chrome擴展程式,該擴展的主要功能是“Displays availability of ebooks and audiobooks from your local library on GoodReads pages.”。

擴展截圖

screenshot
screenshot

下載Available Reads擴展crx文件

下載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
官方網址 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\/*"
    ]
}