Speakeasy by CoPilot AI

Speakeasy by CoPilot AI

Elevate your LinkedIn convos with Speakeasy by CoPilot AI! Uncover communication styles, gain insights, and communicate with ease.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "Speakeasy",
  "name": "Speakeasy by CoPilot AI",
  "description": "Elevate your LinkedIn convos with Speakeasy by CoPilot AI! Uncover communication styles, gain insights, and communicate with ease.",
  "manifest_version": 3,
  "permissions": [
    "activeTab",
    "tabs",
    "cookies",
    "scripting"
  ],
  "version": "5.0.8",
  "icons": {
    "16": "public/16x16.png",
    "24": "public/24x24.png",
    "32": "public/32x32.png",
    "48": "public/48x48.png",
    "128": "public/128x128.png",
    "192": "public/192x192.png",
    "256": "public/256x256.png"
  },
  "host_permissions": [
    "https://www.linkedin.com/in/*",
    "https://commstyle.copilotai.com/extension/"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.linkedin.com/in/*"
      ],
      "js": [
        "logger.js",
        "scraping.js",
        "linkedin-profile-content-script.js"
      ]
    }
  ],
  "action": {
    "default_title": "Speakeasy",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  }
}