Goodreads Ratings on Overdrive

Goodreads Ratings on Overdrive

View Goodreads ratings on Overdrive ebooks and audiobooks

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "View Goodreads ratings on Overdrive ebooks and audiobooks",
  "manifest_version": 3,
  "name": "Goodreads Ratings on Overdrive",
  "version": "1.2.1",
  "homepage_url": "https://waleedzuberi.com/code/goodreads-ratings-overdrive/",
  "icons": {
    "96": "icons/icon_96.png",
    "128": "icons/icon_128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.overdrive.com/*"
      ],
      "js": [
        "overdrive_goodreads.js"
      ],
      "run_at": "document_end",
      "css": [
        "overdrive_goodreads.css"
      ]
    }
  ],
  "host_permissions": [
    "https://*.goodreads.com/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icons/goodreads-icon.png"
      ],
      "matches": [
        "https://*.overdrive.com/*"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "96": "icons/icon_96.png"
    },
    "default_title": "Goodreads Ratings on Overdrive"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}