Readily

Readily

A web highlighter and annotation tool for all kinds of visual thinkers.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Readily",
  "description": "A web highlighter and annotation tool for all kinds of visual thinkers.",
  "version": "1.3.0",
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon16.png"
  },
  "devtools_page": "devtools.html",
  "background": {
    "service_worker": "js/service-worker/index.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "node_modules/@webcomponents/custom-elements/custom-elements.min.js",
        "js/highlighter/index.js",
        "js/sidebar-whiteboard/index.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "excalidraw-assets/*",
        "excalidraw-assets-dev/*",
        "plausible.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "storage",
    "activeTab",
    "scripting"
  ]
}