Paint Tool for Chrome

Paint Tool for Chrome

Paint tool to draw anything and anywhere in real-time, paint online. Take a screenshot of your drawing use screenshot tool.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "version": "1.1.1",
  "manifest_version": 3,
  "default_locale": "en",
  "action": {
    "default_title": "__MSG_name__",
    "default_icon": "icons/icon-128.png"
  },
  "icons": {
    "128": "icons/icon-128.png"
  },
  "background": {
    "service_worker": "js/service_worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "js/jquery-3.2.1.min.js"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "css": [
        "styles/modal.css"
      ]
    }
  ],
  "options_page": "html/settings.html",
  "permissions": [
    "activeTab",
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "img/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}