Library Scan: OverDrive + Goodreads

Library Scan: OverDrive + Goodreads

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

Merlin
Additional files are visible only to premium users

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