Oneinsight Extension

Oneinsight Extension

Experience Oneinsight everywhere your workflow leads you

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Oneinsight Extension",
  "description": "Experience Oneinsight everywhere your workflow leads you",
  "version": "1.1.0",
  "options_page": "options/options.html",
  "permissions": [
    "tabs",
    "contextMenus",
    "notifications",
    "storage",
    "activeTab"
  ],
  "action": {
    "default_icon": "/icons/oneinsight-128x128.png",
    "default_title": ""
  },
  "icons": {
    "16": "/icons/oneinsight-16x16.png",
    "48": "/icons/oneinsight-48x48.png",
    "128": "/icons/oneinsight-128x128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://*.oneinsight.io/*"
    ]
  }
}