Available Reads

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

Cos'è Available Reads?

Available Reads è un'estensione di Chrome sviluppata da rhollister, e la sua funzione principale è "Displays availability of ebooks and audiobooks from your local library on GoodReads pages.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Available Reads

Scarica i file di estensione Available Reads in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome Available Reads Available Reads
ID gclnfffacbjpclfenjgefpfnafmjghhk
URL Ufficiale https://chromewebstore.google.com/detail/available-reads/gclnfffacbjpclfenjgefpfnafmjghhk
Descrizione Displays availability of ebooks and audiobooks from your local library on GoodReads pages.
Dimensione del File 253 KB
Conteggio Installazioni 4,841
Versione Corrente 5.2.1
Ultimo Aggiornamento 2023-10-09
Data di Pubblicazione 2018-10-13
Valutazione 4.75/5 Totale 99 Valutazioni
Sviluppatore rhollister
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://rhollister.github.io/goodreads
Lingue Supportate 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\/*"
    ]
}