Paint Tool for Web

Paint Tool for Web

Draw any shapes, write text, erase directly on the page, take a screenshot of what you have drawn

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.1",
  "manifest_version": 2,
  "default_locale": "en",
  "description": "Draw any shapes, write text, erase directly on the page, take a screenshot of what you have drawn",
  "background": {
    "scripts": [
      "debug/js/init.js",
      "debug/js/main.js"
    ],
    "persistent": false
  },
  "options_page": "settings/settings.html",
  "browser_action": {
    "default_title": "Paint Tool for Web",
    "default_icon": "src/img/logo.png"
  },
  "icons": {
    "128": "src/img/logo.png"
  },
  "permissions": [
    "storage",
    "<all_urls>",
    "downloads"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}