Risk Intelligence Web Extension

Risk Intelligence Web Extension powered by Cyberint
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Risk Intelligence Web Extension",
  "description": "Risk Intelligence Web Extension powered by Cyberint",
  "version": "2.0.1",
  "manifest_version": 3,
  "icons": {
    "16": "favIcon-enabled.png",
    "48": "favIcon-enabled.png",
    "128": "favIcon-enabled.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "Risk Intelligence Web Extension powered by Cyberint",
    "default_icon": "favIcon-enabled.png"
  },
  "permissions": [
    "contextMenus",
    "storage",
    "scripting"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*.html",
        "*.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "run_at": "document_end"
    }
  ]
}