DataMask

DataMask

Mask sensitive data in screenshots. Take full page screenshots and export to PNG/JPEG/WEBP using online screenshot editor

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "DataMask",
  "short_name": "DataMask",
  "description": "Mask sensitive data in screenshots. Take full page screenshots and export to PNG/JPEG/WEBP using online screenshot editor",
  "version": "2.1.3",
  "background": {
    "service_worker": "extension.js"
  },
  "icons": {
    "19": "icons/icon19.png",
    "128": "icons/icon128.png"
  },
  "action": {
    "default_icon": {
      "128": "icons/icon19.png"
    }
  },
  "commands": {
    "Open DataMask": {
      "suggested_key": {
        "default": "Ctrl+M",
        "mac": "Command+M"
      },
      "description": "Opens DataMask banner"
    }
  },
  "options_page": "options.html",
  "permissions": [
    "activeTab",
    "storage",
    "scripting"
  ],
  "optional_permissions": [
    "downloads"
  ],
  "externally_connectable": {
    "matches": [
      "https://datamask.tech/*"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "icons/icon128.png",
        "material.woff2"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "host_permissions": [
    "*://*/"
  ],
  "minimum_chrome_version": "96.0.0.0",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}