Goodreads Ratings on Overdrive

View Goodreads ratings on Overdrive ebooks and audiobooks

Goodreads Ratings on Overdrive란 무엇입니까?

Goodreads Ratings on Overdrive은(는) https://waleedzuberi.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "View Goodreads ratings on Overdrive ebooks and audiobooks"입니다.

확장 프로그램 스크린샷

screenshot

Goodreads Ratings on Overdrive 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This simple browser add-on shows you the Goodreads rating of ebooks and audiobooks directly on the listing page on Overdrive library pages. No more switching tabs and searching manually!

This add-on is not affiliated with Goodreads, Inc. or Overdrive, Inc.

For support, please visit https://github.com/wzub/goodreads_overdrive/issues

* Version 1.2 (26/1/2022)
	* Fix for new book page and stars on Goodreads (thanks @rubenmv)
* Version 1.1.0 (8/5/2020)
	* Fix for Chrome CORB errors
	* Show rating from Goodreads as stars (thanks @rubenmv)
	* Improved URL matching (thanks @Foxsly)
	* General code cleanup
* Version 1.0.2 (29/01/2018)
	* Chrome compatibility fixes
* Version 1.0.1 (18/1/2018)
	* Fix error handling
* Version 1.0.0 (17/1/2018)
	* Initial release                    

확장 프로그램 기본 정보

이름 Goodreads Ratings on Overdrive Goodreads Ratings on Overdrive
ID ooefaoacdclhcccchjnapjlclpkeblje
공식 URL https://chromewebstore.google.com/detail/goodreads-ratings-on-over/ooefaoacdclhcccchjnapjlclpkeblje
설명 View Goodreads ratings on Overdrive ebooks and audiobooks
파일 크기 52.03 KB
설치 횟수 635
현재 버전 1.2
최근 업데이트 2023-01-28
출시 날짜 2020-05-10
평점 5.00/5 총 1 개의 평점
개발자 https://waleedzuberi.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://waleedzuberi.com/code/goodreads-ratings-overdrive/
도움말 페이지 URL https://github.com/wzub/goodreads_overdrive/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "View Goodreads ratings on Overdrive ebooks and audiobooks",
    "manifest_version": 2,
    "name": "Goodreads Ratings on Overdrive",
    "version": "1.2",
    "homepage_url": "https:\/\/waleedzuberi.com\/code\/goodreads-ratings-overdrive\/",
    "icons": {
        "128": "icons\/icon_128.png",
        "96": "icons\/icon_96.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.overdrive.com\/*",
                "*:\/\/*.overdrive.com\/*\/media\/*"
            ],
            "js": [
                "overdrive_goodreads.js"
            ],
            "run_at": "document_end",
            "css": [
                "overdrive_goodreads.css"
            ]
        }
    ],
    "permissions": [
        "*:\/\/*.goodreads.com\/*",
        "*:\/\/*.overdrive.com\/*",
        "*:\/\/*.overdrive.com\/*\/media\/*"
    ],
    "web_accessible_resources": [
        "icons\/goodreads-icon.png"
    ],
    "page_action": {
        "default_icon": {
            "96": "icons\/icon_96.png"
        },
        "default_title": "Goodreads Ratings on Overdrive"
    }
}