Unitus

Unitus

Speed up your prospecting with this powerful AI tool

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Unitus",
  "description": "Speed up your prospecting with this powerful AI tool",
  "version": "2.4.3",
  "action": {
    "default_title": "Click to open Unitus"
  },
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "side_panel": {
    "default_path": "index.html",
    "default_icon": "images/icon-16.png"
  },
  "background": {
    "service_worker": "service-worker.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.linkedin.com/*"
      ],
      "js": [
        "./content-scripts/linkedin-actions.js"
      ],
      "css": [
        "./content-scripts/linkedin-actions.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/images/*"
      ],
      "matches": [
        "https://www.linkedin.com/*"
      ]
    }
  ],
  "permissions": [
    "sidePanel",
    "storage",
    "activeTab"
  ]
}