Spade: Draw on and Annotate the Web & PDFs

Spade: Draw on and Annotate the Web & PDFs

Draw out your ideas, notes, and thoughts anywhere and save them for later with Spade.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Spade: Draw on and Annotate the Web & PDFs",
  "description": "Draw out your ideas, notes, and thoughts anywhere and save them for later with Spade.",
  "version": "4.0.2",
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "libraries/p5.min.js",
        "libraries/jquery.js",
        "libraries/jspdf.min.js",
        "libraries/curve_calc.min.js",
        "js/tutorial.js",
        "js/variables.js",
        "js/api.js",
        "js/utils.js",
        "js/tools.js",
        "js/draw.js",
        "js/main.js",
        "js/ui.js",
        "js/listener.js"
      ],
      "css": [
        "css/icons.css",
        "css/index.css",
        "css/popup.css",
        "css/tutorial.css"
      ]
    }
  ],
  "permissions": [
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "icons": {
    "16": "logos/128.png",
    "48": "logos/128.png",
    "128": "logos/128.png"
  },
  "action": {
    "default_icon": "logos/spade_handle_transparent_small.png",
    "default_popup": "popup/settings.html"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*",
        "webfonts/*",
        "logos/*"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": [
        "kamhfnamfpipghhnbaolbgemgnafkejo"
      ]
    }
  ]
}