Paint Tool - Marker for Chrome

Paint Tool - Marker for Chrome

Draw anything (shapes, lines or add text) right on websites in real time and taking a screenshot!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "version": "1.0.7",
  "manifest_version": 2,
  "description": "__MSG_description__",
  "default_locale": "en",
  "background": {
    "scripts": [
      "javascript/background.js"
    ]
  },
  "options_page": "options.html",
  "browser_action": {
    "default_title": "Paint Tool",
    "default_icon": "images/icon38.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/javascript/jquery-3.2.1.min.js",
        "/javascript/canvas.min.js"
      ],
      "css": [
        "/styles/modal.css"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "permissions": [
    "storage",
    "<all_urls>",
    "webRequest",
    "webRequestBlocking",
    "storage"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}