BookBuyer

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

BookBuyerคืออะไร?

BookBuyer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Johnny และคุณลักษณะหลักของมันคือ "Allows for quick searching of goodread books on an arbitrary website."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย BookBuyer

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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"
    ]
}