Library Scan: OverDrive + Goodreads

Scan any OverDrive library for available eBooks & audiobooks from your Goodreads to-read shelf.

Library Scan: OverDrive + Goodreads란 무엇입니까?

Library Scan: OverDrive + Goodreads은(는) Isaac B.에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Scan any OverDrive library for available eBooks & audiobooks from your Goodreads to-read shelf."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Library Scan: OverDrive + Goodreads 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        • Find titles immediately available for checkout
• Place holds on upcoming books
• Filter by media type & availability
• Automatic daily scans

Support & feature requests available at https://isaacbock.com/library-scan.
Source code available at https://github.com/isaacbock/library-scan.

Not affiliated with Goodreads or OverDrive, Inc. All data accessed and interpreted is available publicly online.

Google Analytics is used to collect extension usage statistics & help improve user experience. To opt-out of Google Analytics tracking, please visit http://tools.google.com/dlpage/gaoptout or set up a filter within an ad blocker tool.

— What's new? —
• Version 1.0.3 (09/12/21)
     ◦ Bug fix: only refresh while online
• Version 1.0.2 (05/22/21)
     ◦ Improved book matching algorithm
     ◦ Improved setup instructions & resources
     ◦ Enhanced versioning analytics
     ◦ Bug fix: accurate badge counts
     ◦ Bug fix: limit auto refreshing after errors
• Version 1.0.1 (07/26/20)
     ◦ Improved analytics
• Version 1.0.0 (07/25/20)
     ◦ Initial release                    

확장 프로그램 기본 정보

이름 Library Scan: OverDrive + Goodreads Library Scan: OverDrive + Goodreads
ID mfckggnkebdpaocogfekaaicafooeiik
공식 URL https://chromewebstore.google.com/detail/library-scan-overdrive-+/mfckggnkebdpaocogfekaaicafooeiik
설명 Scan any OverDrive library for available eBooks & audiobooks from your Goodreads to-read shelf.
파일 크기 766 KB
설치 횟수 1,260
현재 버전 1.0.3
최근 업데이트 2021-09-14
출시 날짜 2020-07-25
평점 5.00/5 총 10 개의 평점
개발자 Isaac B.
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://isaacbock.com/library-scan
도움말 페이지 URL https://isaacbock.com/library-scan
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Library Scan: OverDrive + Goodreads",
    "short_name": "Library Scan",
    "description": "Scan any OverDrive library for available eBooks & audiobooks from your Goodreads to-read shelf.",
    "version": "1.0.3",
    "author": "Isaac B.",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "scripts": [
            "bootstrap\/jquery.min.js",
            "background\/api_keys.js",
            "background\/xmlToJson.min.js",
            "background\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/isaacbock.com\/library-scan"
            ],
            "js": [
                "background\/install.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "https:\/\/www.goodreads.com\/*",
        "https:\/\/*.overdrive.com\/*"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}