OSINT Angel

OSINT Angel

OSINT Angel is a browser extension that aids in gathering and analyzing OSINT data from various sources.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "OSINT Angel",
  "version": "0.0.0.5",
  "description": "OSINT Angel is a browser extension that aids in gathering and analyzing OSINT data from various sources.",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "contextMenus",
    "scripting",
    "storage"
  ],
  "host_permissions": [
    "https://www.virustotal.com/api/v3/ip_addresses/*",
    "https://api.abuseipdb.com/api/v2/*",
    "https://dublin.api.threatjammer.com/v1/assess/ip/*",
    "https://www.virustotal.com/api/v3/domains/*",
    "https://api.xforce.ibmcloud.com/api/url/*",
    "https://api.xforce.ibmcloud.com/api/whois/*",
    "https://www.ipqualityscore.com/api/json/url/*",
    "https://www.virustotal.com/api/v3/files/*",
    "https://api.xforce.ibmcloud.com/api/malware/*"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icon16.png",
      "48": "icon48.png",
      "128": "icon128.png"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; frame-src 'self'"
  }
}