InfraNodus AI Insights

InfraNodus AI Insights

Reveal blind spots and use them to generate interesting research questions and ideas using the built-in AI.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "2.0.1",
  "manifest_version": 2,
  "icons": {
    "16": "logo.png",
    "32": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  },
  "host_permissions": [
    "http://localhost:3000/",
    "https://infranodus.com/"
  ],
  "permissions": [
    "storage",
    "activeTab",
    "webRequest",
    "webRequestBlocking",
    "webNavigation",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {},
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ],
      "css": [
        "content-script-exposed.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "web-accessible.js",
    "pdfjs/web/pdf_viewer.html"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{c9900a11-2dab-4ad8-b1be-49f2b6e86bc3}"
    }
  }
}