EngageWithAI - (Early Beta)

EngageWithAI - (Early Beta)

Your personal LinkedIn AI assistant. Supercharge your LinkedIn engagement with EngageWithAI.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "EngageWithAI - (Early Beta)",
  "version": "0.1.1",
  "description": "Your personal LinkedIn AI assistant. Supercharge your LinkedIn engagement with EngageWithAI.",
  "permissions": [
    "cookies",
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "*://*.engagewithai.com/*",
    "*://*.linkedin.com/*"
  ],
  "icons": {
    "16": "/assets/images/icons/icon-16.png",
    "48": "/assets/images/icons/icon-48.png",
    "72": "/assets/images/icons/icon-72.png",
    "128": "/assets/images/icons/icon-128.png"
  },
  "action": {
    "default_popup": "/pages/popup/popup.html"
  },
  "background": {
    "service_worker": "/assets/js/serviceWorker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.linkedin.com/*"
      ],
      "js": [
        "/assets/js/contentScript.js"
      ],
      "css": [
        "/assets/css/contentStyles.css"
      ]
    }
  ],
  "options_page": "/pages/options/options.html"
}