Screenshot Scrubber

Screenshot Scrubber

This extension replaces text and images in web pages to remove PII for screenshots.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Screenshot Scrubber",
  "description": "This extension replaces text and images in web pages to remove PII for screenshots.",
  "version": "1.0.2",
  "manifest_version": 3,
  "permissions": [
    "storage",
    "activeTab",
    "scripting",
    "contextMenus",
    "tabs",
    "unlimitedStorage"
  ],
  "options_page": "options_redirector.html",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "contentscript.js",
        "mark.min.js"
      ],
      "css": [
        "styles.css"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "commands": {
    "ReplaceSelection": {
      "suggested_key": {
        "default": "Ctrl+Shift+H",
        "mac": "Command+Shift+H"
      },
      "description": "Replace selected text on the current page."
    },
    "ReplaceImage": {
      "suggested_key": {
        "default": "Alt+H",
        "mac": "Alt+H"
      },
      "description": "Replace an image from the current page."
    },
    "Scrub": {
      "suggested_key": {
        "default": "Ctrl+Shift+S",
        "mac": "Ctrl+Shift+S"
      },
      "description": "Scrub the current page using configured values."
    }
  },
  "action": {
    "default_icon": {
      "16": "/images/DocScreenshotScrubberIcon16.png",
      "32": "/images/DocScreenshotScrubberIcon32.png",
      "48": "/images/DocScreenshotScrubberIcon48.png",
      "128": "/images/DocScreenshotScrubberIcon128.png"
    }
  },
  "host_permissions": [
    "http://*/*",
    "https://*/*",
    "<all_urls>"
  ],
  "icons": {
    "16": "/images/DocScreenshotScrubberIcon16.png",
    "32": "/images/DocScreenshotScrubberIcon32.png",
    "48": "/images/DocScreenshotScrubberIcon48.png",
    "128": "/images/DocScreenshotScrubberIcon128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/images/DocScreenshotScrubberIcon32.png",
        "styles.css",
        "mark.min.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}