Draw On Screen

Extension for drawing on the screen.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Draw On Screen",
  "version": "1.0",
  "description": "Extension for drawing on the screen.",
  "action": {
    "default_icon": {
      "16": "icons/inactive/icon-16.png",
      "32": "icons/inactive/icon-32.png",
      "48": "icons/inactive/icon-48.png",
      "128": "icons/inactive/icon-128.png"
    }
  },
  "icons": {
    "16": "icons/active/icon-16.png",
    "32": "icons/active/icon-32.png",
    "48": "icons/active/icon-48.png",
    "128": "icons/active/icon-128.png"
  },
  "permissions": [
    "activeTab",
    "scripting",
    "downloads"
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "control-panel.html",
        "control-panel.css",
        "pencil.png",
        "icons/brush.png",
        "icons/close.png",
        "icons/download.png",
        "icons/pencil_red.png",
        "icons/pencil_blue.png",
        "icons/pencil_green.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}