Paint Tool (Updated)

Paint Tool (Updated)

Draw 🎨 anything anywhere in real-time, an MS Paint but in your browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Paint Tool (Updated)",
  "version": "1.0.5",
  "description": "Draw 🎨 anything anywhere in real-time, an MS Paint but in your browser.",
  "background": {
    "service_worker": "js/background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "html/dashboard.html",
        "html/toolkit.html",
        "js/*.js",
        "img/*.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "16": "img/brush.png",
    "32": "img/brush.png",
    "48": "img/brush.png",
    "128": "img/brush.png"
  },
  "action": {
    "default_icon": "img/brush.png",
    "default_title": "Draw Tool"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/style.css"
      ],
      "js": [
        "js/global.js",
        "js/content.js"
      ]
    }
  ],
  "permissions": [
    "unlimitedStorage",
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}