novoShield: Anti-Phishing

novoShield: Anti-Phishing

novoShield brings industry-leading cybersecurity to your browser, so you can work, play, and connect - fearlessly.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "novoShield: Anti-Phishing",
  "description": "novoShield brings industry-leading cybersecurity to your browser, so you can work, play, and connect - fearlessly.",
  "version": "1.34",
  "manifest_version": 3,
  "permissions": [
    "tabs",
    "storage",
    "scripting"
  ],
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "service_worker": "./dist/background.js"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "dist/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./dist/content.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./dist/input_detection.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    },
    {
      "matches": [
        "*://www.bing.com/search*"
      ],
      "js": [
        "./dist/search_an.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://search.yahoo.com/search*"
      ],
      "js": [
        "./dist/search_an.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://search.yahoo.com/yhs/search*"
      ],
      "js": [
        "./dist/search_an.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*/search*"
      ],
      "include_globs": [
        "*://*.google.*/search*"
      ],
      "js": [
        "dist/search_re.js"
      ],
      "css": [
        "dist/search_re.css"
      ],
      "run_at": "document_start"
    }
  ],
  "action": {}
}