BookBuyer

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

什麼是BookBuyer?

BookBuyer是由Johnny開發的Chrome擴展程式,該擴展的主要功能是“Allows for quick searching of goodread books on an arbitrary website.”。

擴展截圖

screenshot
screenshot
screenshot

下載BookBuyer擴展crx文件

下載BookBuyer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 BookBuyer BookBuyer
ID ecgniefnmkclifnmohjhkbkkblgpinan
官方網址 https://chromewebstore.google.com/detail/bookbuyer/ecgniefnmkclifnmohjhkbkkblgpinan
簡介 Allows for quick searching of goodread books on an arbitrary website.
檔案大小 11.48 KB
安裝次數 99
目前版本 1.2.1
更新時間 2024-02-15
上架時間 2024-01-20
開發者 Johnny
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/JonDerThan/bookbuyer
說明頁面URL https://github.com/JonDerThan/bookbuyer/issues
支援的語言 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"
    ]
}