Goodreads Stats

Goodreads extension that adds data export capability and displays extensive analytics about your reading habits.

What is Goodreads Stats?

Goodreads Stats is a Chrome extension developed by https://patii.uk, and its main feature is "Goodreads extension that adds data export capability and displays extensive analytics about your reading habits.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Goodreads Stats Extension CRX File

Download Goodreads Stats extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Features:
- Export entire library
- Compare reading rates between years
- Show insights about your favorite books
- Search your entire book library                    

Extension Basic Information

Name Goodreads Stats Goodreads Stats
ID hdpkeldenopncgodhpjdlpngmnaijpjf
Official URL https://chromewebstore.google.com/detail/goodreads-stats/hdpkeldenopncgodhpjdlpngmnaijpjf
Description Goodreads extension that adds data export capability and displays extensive analytics about your reading habits.
File Size 4.15 MB
Installation Count 38
Current Version 1.0.2
Last Updated 2023-07-27
Publish Date 2023-04-24
Developer https://patii.uk
Email [email protected]
Payment Type free
Extension Website https://github.com/maxxxxxdlp/goodreads-stats
Help Page URL https://github.com/maxxxxxdlp/goodreads-stats/issues/new/choose
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Goodreads Stats",
    "short_name": "Goodreads Stats",
    "version": "1.0.2",
    "description": "Goodreads extension that adds data export capability and displays extensive analytics about your reading habits.",
    "author": "Max Patiiuk",
    "manifest_version": 3,
    "icons": {
        "16": ".\/src\/public\/images\/favicon-16x16.png",
        "32": ".\/src\/public\/images\/favicon-32x32.png",
        "48": ".\/src\/public\/images\/favicon-48x48.png",
        "128": ".\/src\/public\/images\/favicon-128x128.png",
        "1024": ".\/src\/public\/images\/favicon-1024x1024.png"
    },
    "action": {
        "default_title": "Get insights about your reading habits"
    },
    "current_locale": "en",
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": ".\/src\/dist\/background.bundle.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.goodreads.com\/review\/list\/*"
            ],
            "js": [
                ".\/src\/dist\/foreground.bundle.js"
            ]
        }
    ],
    "cross_origin_embedder_policy": {
        "value": "require-corp"
    },
    "cross_origin_opener_policy": {
        "value": "same-origin"
    }
}