PhishCloud

PhishCloud

Verify Links all over the internet and check their safety against the largest PhishCloud Database in the World.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "PhishCloud",
  "action": {
    "default_popup": "popup.html",
    "default_title": "PhishCloud"
  },
  "manifest_version": 3,
  "version": "4.2.0",
  "description": "Verify Links all over the internet and check their safety against the largest PhishCloud Database in the World.",
  "icons": {
    "16": "img/icon16New2.png",
    "32": "img/Icon32New2.png",
    "48": "img/icon48New2.png",
    "128": "img/icon64New2.png"
  },
  "permissions": [
    "activeTab",
    "storage",
    "tabs",
    "webNavigation",
    "contextMenus",
    "background",
    "notifications"
  ],
  "host_permissions": [
    "https://portal.phishcloud.io/DesktopSignIn",
    "https://portal.phishcloud.io/PortalSignIn",
    "http://*/*",
    "https://*/*",
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*.png",
        "*.html",
        "*.css",
        "public/img/Logo.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "js": [
        "scripts/accessTokenCheck.js"
      ],
      "matches": [
        "https://portal.phishcloud.io/*",
        "https://testportal.phishcloud.io/*"
      ]
    },
    {
      "js": [
        "scripts/jquery-3.6.3.min.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "allFrames": true,
      "run_at": "document_end"
    },
    {
      "js": [
        "scripts/getLinksOnPage.js",
        "scripts/apiCalls.js",
        "scripts/linkBorderFormatting.js",
        "scripts/linkClick.js"
      ],
      "allFrames": true,
      "css": [
        "css/linkBorderStyling.css",
        "css/loadingSpinner.css",
        "scripts/Modals/linkSafetyCheckModal.css",
        "scripts/Modals/loginReminderModal.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "js": [
        "scripts/linkBorderFormatting.js",
        "scripts/addLinkSafetyLogic.js"
      ],
      "css": [
        "css/linkBorderStyling.css",
        "css/loadingSpinner.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}