Preava Prevent

Preava Prevent

Preava Prevent stops your Gmail users from emailing unintended recipients.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Preava Prevent",
  "version": "2.0.46",
  "description": "Preava Prevent stops your Gmail users from emailing unintended recipients.",
  "action": {
    "default_icon": {
      "128": "./assets/p-icon-128.png"
    },
    "default_popup": "./dist/popup/index.html"
  },
  "options_ui": {
    "page": "./dist/options/index.html",
    "open_in_tab": true
  },
  "background": {
    "service_worker": "./dist/background/backgroundWorker.js",
    "type": "module"
  },
  "icons": {
    "128": "./assets/p-icon-128.png"
  },
  "permissions": [
    "alarms",
    "storage"
  ],
  "host_permissions": [
    "https://mail.google.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "./dist/contentScripts/index.global.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "dist/contentScripts/style.css"
      ],
      "matches": [
        "https://*/*"
      ]
    },
    {
      "resources": [
        "dist/options/index.html"
      ],
      "matches": [
        "https://id.preava.com/*",
        "https://accounts.google.com/*"
      ]
    },
    {
      "resources": [
        "config/auth0.json",
        "config/chrome.json"
      ],
      "matches": [
        "chrome-extension://pikndkcmkacaocifighbjneacgblcbah/*"
      ]
    },
    {
      "resources": [
        "config/auth0.json"
      ],
      "matches": [
        "https://mail.google.com/*"
      ]
    }
  ],
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAjJCGVPcRu0np6qTSwmsiTehwRcZFLEdVv2I5AWf/Z8DEMQVA9ZTjNWhGkxSUIXvaSh2AEil0M2hShPiCuQTKHazkI1njS57rTOmCahfUxiI51bDYBdo7aD3JMnLgEvO75FLkri3Kdy2wF95MpKaa+AbEiLhRYnppyoKkyZxeZAbiEVhm0cmQwuiEKAhZlgswNoL2iKSECWb9TsTOX5Wg4K3oG95YL39VprfLOK4aSK+dr0Ay8lmKYRko1+wzPkgZr1eV4LVjhpTuQKlSWpIQ2hWxRjst+1C04EkV0NxH18qF3YCNFgRdmZBaWHRN/d79ELcZuKtoLd75tKONdT1fzQIDAQAB"
}