SalesRobot

SalesRobot

Build your personal brand on LinkedIn using AI

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "SalesRobot",
  "description": "Build your personal brand on LinkedIn using AI",
  "version": "0.1.52",
  "action": {
    "default_popup": "popup.html",
    "default_title": "SalesRobot",
    "default_icon": "img/logo.png"
  },
  "icons": {
    "16": "img/logo.png",
    "48": "img/logo.png",
    "128": "img/logo.png"
  },
  "permissions": [
    "webNavigation",
    "storage",
    "cookies",
    "activeTab",
    "alarms"
  ],
  "background": {
    "service_worker": "background.bundle.js"
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "https://app.salesrobot.co/*",
        "https://www.linkedin.com/*",
        "https://http-intake.logs.us5.datadoghq.com/*"
      ],
      "js": [
        "contentScript.bundle.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "img/logo.png",
        "img/refresh.png"
      ],
      "matches": [
        "*://*/*"
      ]
    },
    {
      "resources": [
        "popup.html"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "host_permissions": [
    "https://app.salesrobot.co/*",
    "*://*.linkedin.com/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'",
    "connect_src": [
      "https://apis.google.com",
      "https://app.salesrobot.co/*"
    ]
  }
}