Cascade Reading

Cascade Reading

Reimagine Reading for the Modern Age

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Cascade Reading",
  "description": "Reimagine Reading for the Modern Age",
  "version": "0.0.2.6",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    },
    {
      "matches": [
        "*://cascadereading.com/chrome-api-auth/*"
      ],
      "js": [
        "token.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "loading.gif",
        "logo_small.png",
        "popup_banner.png",
        "content.css",
        "cascade_style.css",
        "shadow.css",
        "content.js.LICENSE.txt",
        "popup.js.LICENSE.txt",
        "token.js.LICENSE.txt",
        "additional.LICENSE.txt",
        "readability.js.LICENSE.txt",
        "goldenSites.json",
        "api.json"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage",
    "contextMenus",
    "tabs"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "logo_small.png",
    "32": "logo_small.png",
    "48": "logo_small.png",
    "128": "logo_small.png"
  }
}