Paint Tool by Painty

Paint Tool by Painty

Paint tool to draw shapes, add text on web pages in real-time, make a screenshot, and download or share the screenshot with friends.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_desc__",
  "version": "1.10.4",
  "default_locale": "en",
  "manifest_version": 3,
  "icons": {
    "32": "assets/static/32.png",
    "64": "assets/static/64.png",
    "128": "assets/static/128.png"
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "topSites",
    "contextMenus",
    "tabs"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "js": [
        "assets/static/fabric.min.js",
        "content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "action": {
    "default_title": "__MSG_title__"
  },
  "background": {
    "service_worker": "background.js"
  },
  "options_page": "./options.html",
  "commands": {
    "open-drawer": {
      "suggested_key": {
        "default": "Alt+E",
        "linux": "Alt+E",
        "windows": "Alt+E",
        "mac": "Command+E"
      },
      "description": "Activate/Disable"
    },
    "tool-panel-take-screenshot": {
      "description": "Take Screenshot"
    },
    "tool-panel-selected-area": {
      "description": "Selected Area"
    },
    "tool-panel-mouse-cursor": {
      "description": "Mouse Cursor"
    },
    "tool-panel-pencil": {
      "description": "Pencil"
    },
    "tool-panel-highlighter": {
      "description": "Highlighter"
    },
    "tool-panel-color-dropper": {
      "description": "Color Dropper"
    },
    "tool-panel-line": {
      "description": "Line"
    },
    "tool-panel-arrow": {
      "description": "Arrow"
    },
    "tool-panel-polyline": {
      "description": "Polyline"
    },
    "tool-panel-rectangle": {
      "description": "Rectangle"
    },
    "tool-panel-circle": {
      "description": "Circle"
    },
    "tool-panel-polygon": {
      "description": "Polygon"
    },
    "tool-panel-text": {
      "description": "Text"
    },
    "tool-panel-emoji": {
      "description": "Emoji"
    },
    "tool-panel-blur": {
      "description": "Blur"
    },
    "tool-panel-eraser": {
      "description": "Eraser"
    },
    "tool-panel-clear-all": {
      "description": "Clear All"
    },
    "tool-panel-undo": {
      "description": "Undo"
    },
    "tool-panel-redo": {
      "description": "Redo"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}