Tracxn Extension

Tracxn Extension

One-click snapshot of millions of companies

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Tracxn Extension",
  "type": "chrome",
  "version": "8.1.6",
  "manifest_version": 3,
  "description": "One-click snapshot of millions of companies",
  "icons": {
    "16": "icons/16.png",
    "128": "icons/128.png"
  },
  "background": {
    "service_worker": "scripts/sw.js",
    "type": "module"
  },
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "permissions": [
    "unlimitedStorage",
    "activeTab",
    "background",
    "storage",
    "scripting"
  ],
  "content_scripts": [
    {
      "js": [
        "scripts/pageInfo.js",
        "scripts/frameRenderer.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "popup.html"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "19": "icons/19.png",
      "38": "icons/38.png"
    },
    "default_title": "Tracxn"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}