Web Paint

Web Paint

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": "__MSG_appName__",
  "version": "1.6",
  "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": [
      "js/background/app.js"
    ],
    "persistent": false
  },
  "options_page": "layouts/keyboard.html",
  "browser_action": {
    "default_title": "Paint Tool for Web",
    "default_icon": "icons/logo.png"
  },
  "icons": {
    "128": "icons/logo.png"
  },
  "permissions": [
    "storage",
    "<all_urls>",
    "downloads"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}