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란 무엇입니까?

Add Book to Goodreads은(는) Stephen Sulzberger에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add a book you are viewing to your Want to Read, Currently Reading or Read shelf on Goodreads."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Add Book to Goodreads 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Add Book to Goodreads Add Book to Goodreads
ID kecmjklilofklihnefffjgafcbjmbbbl
공식 URL https://chromewebstore.google.com/detail/add-book-to-goodreads/kecmjklilofklihnefffjgafcbjmbbbl
설명 Add a book you are viewing to your Want to Read, Currently Reading or Read shelf on Goodreads.
파일 크기 16.79 KB
설치 횟수 344
현재 버전 1.0.4
최근 업데이트 2022-06-05
출시 날짜 2020-11-01
평점 5.00/5 총 1 개의 평점
개발자 Stephen Sulzberger
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/stephensulzberger/add-book-to-goodreads
도움말 페이지 URL https://github.com/stephensulzberger/add-book-to-goodreads/issues
지원되는 언어 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"
        ]
    }
}