My O'Reilly Downloader

My O'Reilly Downloader

Downloads O'Reilly ebooks, videos, as well as captions.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "My O'Reilly Downloader",
  "description": "Downloads O'Reilly ebooks, videos, as well as captions.",
  "version": "1.1.36",
  "author": "Gareth Stephenson",
  "icons": {
    "16": "img/16px.png",
    "48": "img/48px.png",
    "128": "img/128px.png"
  },
  "action": {
    "default_icon": {
      "16": "img/16px.png",
      "48": "img/48px.png",
      "128": "img/128px.png"
    },
    "default_popup": "popup/popup.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "wa.min.js",
        "*.png",
        "*.svg"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.min.js"
    ],
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/course/*",
        "https://*/videos/*",
        "https://*/learning-paths/*",
        "https://*/library/view/*",
        "https://event.on24.com/eventRegistration/console/*"
      ],
      "js": [
        "api.min.js",
        "frontend.min.js",
        "epub.min.js",
        "common.min.js",
        "kaltura_functions.min.js",
        "contentscript.min.js",
        "fflate.js"
      ],
      "css": [
        "myoreillydownloader.css",
        "toast.css"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{1b6043a9-46df-4352-adf6-553ce26b9106}"
    }
  },
  "permissions": [
    "downloads",
    "storage"
  ],
  "host_permissions": [
    "https://*/course/*",
    "https://*/videos/*",
    "https://*/learning-paths/*",
    "https://*/library/view/*",
    "https://event.on24.com/*",
    "https://74w5vf3eswpo35k4megwrggppq0iretn.lambda-url.us-east-1.on.aws/*"
  ]
}