Web Paint - Page Marker & Editor

Web Paint - Page Marker & Editor

Draw shapes, paint lines, paint curves, add text on pages in real time. Take screenshot or print it. Paint Online.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "version": "1.0.2",
  "manifest_version": 3,
  "default_locale": "en",
  "action": {
    "default_title": "__MSG_name__",
    "default_icon": "default-icon/icon-128.png"
  },
  "icons": {
    "128": "default-icon/icon-128.png"
  },
  "background": {
    "service_worker": "scripts/sw.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "scripts/libs/jquery-3.2.1.min.js"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "css": [
        "assets/css/modalRateUs.css"
      ]
    }
  ],
  "options_page": "settings.html",
  "permissions": [
    "activeTab",
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "img/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}