Available Reads

Displays availability of ebooks and audiobooks from your local library on GoodReads pages.

Available Reads란 무엇입니까?

Available Reads은(는) rhollister에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Displays availability of ebooks and audiobooks from your local library on GoodReads pages."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Available Reads 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        See your local library's ebook availability right from Goodreads! This extension adds a simple listing of copies available from Libby/Overdrive on each Goodreads review page and in your Goodreads bookshelf.

You can even add multiple libraries to search from!                    

확장 프로그램 기본 정보

이름 Available Reads Available Reads
ID gclnfffacbjpclfenjgefpfnafmjghhk
공식 URL https://chromewebstore.google.com/detail/available-reads/gclnfffacbjpclfenjgefpfnafmjghhk
설명 Displays availability of ebooks and audiobooks from your local library on GoodReads pages.
파일 크기 253 KB
설치 횟수 4,841
현재 버전 5.2.1
최근 업데이트 2023-10-09
출시 날짜 2018-10-13
평점 4.75/5 총 99 개의 평점
개발자 rhollister
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://rhollister.github.io/goodreads
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Available Reads",
    "short_name": "AvailableReads",
    "version": "5.2.1",
    "manifest_version": 3,
    "description": "Displays availability of ebooks and audiobooks from your local library on GoodReads pages.",
    "homepage_url": "http:\/\/github.com\/rhollister",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "service_worker": "src\/background.js",
        "type": "module"
    },
    "options_ui": {
        "page": "src\/options\/index.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.goodreads.com\/*"
            ],
            "js": [
                "src\/goodreads_inject.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.overdrive.com\/libraries"
            ],
            "js": [
                "src\/overdrive_inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/throbber.gif",
                "icons\/icon25.png",
                "icons\/icon25-hover.png",
                "icons\/icon48.png",
                "src\/options\/index.html"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": [],
    "host_permissions": [
        "*:\/\/www.goodreads.com\/*",
        "*:\/\/*.overdrive.com\/*"
    ]
}