Omoikane

Omoikane

OSINT support tool for malware analysts.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Omoikane",
  "description": "__MSG_manifest_description__",
  "version": "1.0",
  "manifest_version": 3,
  "permissions": [
    "activeTab",
    "storage",
    "contextMenus"
  ],
  "host_permissions": [
    "https://malpedia.caad.fkie.fraunhofer.de/",
    "https://api.whoisproxy.info/",
    "https://www.shodan.io/host/",
    "https://proxycheck.io/",
    "https://www.abuseipdb.com/check/",
    "https://www.threatcrowd.org/",
    "https://check.torproject.org/"
  ],
  "action": {
    "default_icon": {
      "16": "img/icon_16.png"
    },
    "default_popup": "pages/popup.html"
  },
  "icons": {
    "16": "img/icon_16.png",
    "48": "img/icon_48.png",
    "128": "img/icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "src/contentscript.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "options_ui": {
    "page": "options.html"
  },
  "default_locale": "en"
}