BookBuyer

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

Qu'est-ce que BookBuyer ?

BookBuyer est une extension Chrome développée par Johnny, et sa fonction principale est "Allows for quick searching of goodread books on an arbitrary website.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension BookBuyer

Téléchargez les fichiers d'extension BookBuyer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom BookBuyer BookBuyer
ID ecgniefnmkclifnmohjhkbkkblgpinan
URL Officiel https://chromewebstore.google.com/detail/bookbuyer/ecgniefnmkclifnmohjhkbkkblgpinan
Description Allows for quick searching of goodread books on an arbitrary website.
Taille du Fichier 11.48 KB
Nombre d'Installations 99
Version Actuelle 1.2.1
Dernière Mise à Jour 2024-02-15
Date de Publication 2024-01-20
Développeur Johnny
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/JonDerThan/bookbuyer
URL de la Page d'Aide https://github.com/JonDerThan/bookbuyer/issues
Langues Prises en Charge 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"
    ]
}