BookBuyer

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

BookBuyer क्या है?

BookBuyer Johnny द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows for quick searching of goodread books on an arbitrary website."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में BookBuyer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    ]
}