Paint Tool for Web

Paint Tool for Web

Write text, draw any shapes, erase directly on the page, take screenshots of what you drew

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Paint Tool for Web",
  "version": "1.5",
  "manifest_version": 2,
  "default_locale": "en",
  "description": "Write text, draw any shapes, erase directly on the page, take screenshots of what you drew",
  "background": {
    "scripts": [
      "bg/simple_bg.js",
      "bg/hard_bg.js"
    ]
  },
  "options_page": "page_html.html",
  "browser_action": {
    "default_title": "Paint Tool for Web",
    "default_icon": "lperfage.png"
  },
  "icons": {
    "128": "lperfage.png"
  },
  "permissions": [
    "storage",
    "<all_urls>",
    "downloads"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}