Ptero Redactyl

Ptero Redactyl

Redact data in webpages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.0.4",
  "name": "Ptero Redactyl",
  "description": "Redact data in webpages.",
  "default_locale": "en",
  "icons": {
    "128": "images/icon.128.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/Config.js",
        "js/utils.js",
        "js/content.js"
      ],
      "css": [],
      "all_frames": true
    }
  ],
  "permissions": [
    "contextMenus"
  ]
}