KnowledgeNet.ai Extension

KnowledgeNet.ai Extension

Automatically surface knowledge while browsing the web, including any emails, attachments and internal communications

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "KnowledgeNet.ai Extension",
  "description": "Automatically surface knowledge while browsing the web, including any emails, attachments and internal communications",
  "version": "0.25.0",
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Click to show an alert",
    "default_icon": "icon48.png"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "entry.js",
        "icon128.png",
        "icon16.png",
        "icon48.png",
        "template.html",
        "main.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*",
        "https://inbox.google.com/*"
      ],
      "js": [
        "gmail.js"
      ],
      "css": [
        "gmail.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "main.css"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "host_permissions": [
    "*://*.linkedin.com/",
    "https://mail.google.com/",
    "https://inbox.google.com/"
  ],
  "permissions": [
    "activeTab",
    "tabs",
    "scripting",
    "contextMenus",
    "cookies",
    "storage"
  ],
  "externally_connectable": {
    "matches": [
      "https://*.knowledgenet.ai/*",
      "https://*.linkedin.com/*"
    ]
  }
}