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文件

下载Goodreads Ratings on Overdrive扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
    }
}