Add Book to Goodreads

Add a book you are viewing to your Want to Read, Currently Reading or Read shelf on Goodreads.

Add Book to Goodreads là gì?

Add Book to Goodreads là một tiện ích mở rộng Chrome được phát triển bởi Stephen Sulzberger, và tính năng chính của nó là "Add a book you are viewing to your Want to Read, Currently Reading or Read shelf on Goodreads.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Add Book to Goodreads

Tải xuống các tệp mở rộng Add Book to Goodreads dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        The extension allows you to add a book to a shelf without leaving the page you are on. It is designed to work on individual product pages, and it works for popular sites such as Amazon, Google Books and many others.

How it works: This extension loads the "Add to My Books" widget (http://www.goodreads.com/api/atmb_widget) using an ISBN or ASIN number scraped from the current tab. The extension is not designed for pages with multiple book identification numbers, and it will simply choose the first valid book identification number that it detects on the page. Since the extension is not limited to a specific book site, it requires the "Your data on all websites" and "Your tabs and browsing activity" permissions.

This extension is an upgraded version of the original Add to Goodreads extension.

Code available here:

https://github.com/stephensulzberger/add-book-to-goodreads                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Add Book to Goodreads Add Book to Goodreads
ID kecmjklilofklihnefffjgafcbjmbbbl
URL Chính Thức https://chromewebstore.google.com/detail/add-book-to-goodreads/kecmjklilofklihnefffjgafcbjmbbbl
Mô tả Add a book you are viewing to your Want to Read, Currently Reading or Read shelf on Goodreads.
Kích Thước Tệp 16.79 KB
Số Lần Cài Đặt 344
Phiên Bản Hiện Tại 1.0.4
Cập Nhật Lần Cuối 2022-06-05
Ngày Phát Hành 2020-11-01
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Stephen Sulzberger
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/stephensulzberger/add-book-to-goodreads
URL Trang Trợ Giúp https://github.com/stephensulzberger/add-book-to-goodreads/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Add Book to Goodreads",
    "version": "1.0.4",
    "description": "Add a book you are viewing to your Want to Read, Currently Reading or Read shelf on Goodreads.",
    "icons": {
        "16": "images\/icon16.png",
        "24": "images\/icon24.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "24": "images\/icon24.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        },
        "default_title": "Add Book to Goodreads",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        ""
    ],
    "background": {
        "scripts": [
            "popup.js"
        ]
    }
}