BookBuyer

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

Apa itu BookBuyer?

BookBuyer adalah ekstensi Chrome yang dikembangkan oleh Johnny, dan fitur utamanya adalah "Allows for quick searching of goodread books on an arbitrary website.".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi BookBuyer

Unduh file ekstensi BookBuyer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama BookBuyer BookBuyer
ID ecgniefnmkclifnmohjhkbkkblgpinan
URL Resmi https://chromewebstore.google.com/detail/bookbuyer/ecgniefnmkclifnmohjhkbkkblgpinan
Deskripsi Allows for quick searching of goodread books on an arbitrary website.
Ukuran File 11.48 KB
Jumlah Instalasi 99
Versi Saat Ini 1.2.1
Terakhir Diperbarui 2024-02-15
Tanggal Publikasi 2024-01-20
Pengembang Johnny
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/JonDerThan/bookbuyer
URL Halaman Bantuan https://github.com/JonDerThan/bookbuyer/issues
Bahasa yang Didukung 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"
    ]
}