Giant Sentinel - Gmail™ Phishing Protection

Giant Sentinel - Gmail™ Phishing Protection

Shield your Gmail™ inbox from phishing threats with Giant Sentinel - Real-time email analysis and protection.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Giant Sentinel - Gmail™ Phishing Protection",
  "description": "Shield your Gmail™ inbox from phishing threats with Giant Sentinel - Real-time email analysis and protection.",
  "version": "0.1.4",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/mail/u/*"
      ],
      "js": [
        "scripts/jquery.min.js",
        "./scripts/content-script.js"
      ]
    },
    {
      "matches": [
        "https://app.giantsentinel.com/*"
      ],
      "js": [
        "./scripts/dashboard.js"
      ]
    }
  ],
  "default_locale": "en",
  "action": {
    "default_icon": {
      "16": "./icons/Extension-icon-16.png",
      "32": "./icons/Extension-icon-32.png",
      "48": "./icons/Extension-icon-48.png",
      "128": "./icons/Extension-icon-128.png"
    },
    "default_title": "Giant Sentinel",
    "default_popup": "./popup/popup.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/icons/logo-square.png",
        "styles/styles.css",
        ".env"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "scripting",
    "activeTab",
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "https://mail.google.com/mail/u/*",
    "https://app.giantsentinel.com/*"
  ]
}