Persana: AI on LinkedIn & B2B Contact Info

Persana: AI on LinkedIn & B2B Contact Info

Prospect at scale with AI messaging, people/company insights, verified contact info on LinkedIn & Gmail

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Persana: AI on LinkedIn & B2B Contact Info",
  "description": "Prospect at scale with AI messaging, people/company insights, verified contact info on LinkedIn & Gmail",
  "version": "3.5",
  "manifest_version": 3,
  "author": {
    "name": "Persana AI",
    "url": "https://persana.ai"
  },
  "background": {
    "service_worker": "js/sw.js"
  },
  "icons": {
    "16": "img/icon.png",
    "24": "img/icon.png",
    "32": "img/icon.png",
    "48": "img/icon.png",
    "64": "img/icon.png",
    "128": "img/icon.png",
    "256": "img/icon.png"
  },
  "action": {
    "default_popup": "html/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.linkedin.com/*",
        "https://mail.google.com/*"
      ],
      "js": [
        "js/app.js",
        "js/GmailListener.js"
      ],
      "run_at": "document_start"
    }
  ],
  "externally_connectable": {
    "ids": [
      "pnmjigcdpinjnbdjakloacllelogdcie"
    ],
    "matches": [
      "https://platform.persana.ai/*",
      "http://localhost:3000/*"
    ],
    "accepts_tls_channel_id": false
  },
  "web_accessible_resources": [
    {
      "matches": [
        "https://www.linkedin.com/*",
        "https://mail.google.com/*"
      ],
      "resources": [
        "css/*",
        "img/*"
      ]
    }
  ],
  "host_permissions": [
    "https://www.linkedin.com/*",
    "https://api.persana.ai/*",
    "https://mail.google.com/*",
    "*://*.persana.ai/*"
  ],
  "permissions": [
    "tabs",
    "storage",
    "activeTab",
    "cookies"
  ]
}