BookBuyer

Allows for quick searching of goodread books on an arbitrary website.

Wat is BookBuyer?

BookBuyer is een Chrome-extensie ontwikkeld door Johnny, en de belangrijkste functie is "Allows for quick searching of goodread books on an arbitrary website.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie BookBuyer

Download BookBuyer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Displays search links besides each book on goodreads. The links point to a search on an arbitrary, configurable site. Example sites could be amazon.com, google.com or worldcat.org.                    

Basisinformatie over de Extensie

Naam BookBuyer BookBuyer
ID ecgniefnmkclifnmohjhkbkkblgpinan
Officiële URL https://chromewebstore.google.com/detail/bookbuyer/ecgniefnmkclifnmohjhkbkkblgpinan
Beschrijving Allows for quick searching of goodread books on an arbitrary website.
Bestandsgrootte 11.48 KB
Aantal Installaties 99
Huidige Versie 1.2.1
Laatst Bijgewerkt 2024-02-15
Publicatiedatum 2024-01-20
Ontwikkelaar Johnny
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/JonDerThan/bookbuyer
Help Pagina-URL https://github.com/JonDerThan/bookbuyer/issues
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "BookBuyer",
    "author": "JonDerThan",
    "version": "1.2.1",
    "description": "Allows for quick searching of goodread books on an arbitrary website.",
    "homepage_url": "https:\/\/github.com\/JonDerThan\/bookbuyer",
    "icons": {
        "16": "bookbuyer-favicon.png"
    },
    "action": {
        "default_icon": "bookbuyer-favicon.png",
        "default_title": "BookBuyer",
        "default_popup": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.goodreads.com\/*"
            ],
            "js": [
                "bookbuyer.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "bookbuyer-favicon.png",
                "options.html"
            ],
            "matches": [
                "https:\/\/www.goodreads.com\/*"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "storage"
    ]
}