SDR-GPT

SDR-GPT

The official SDR-GPT chrome extension. Hyper personalization on auto-pilot.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwRjmj4XRtSLmhmgaozmjGta3YbqqWLswi3xcj1DCXN7EXy1hmXt+ApLHaZKt3qq4ylBlah/mc6yHOygcVvXYgEnJVasRITXi+TCEEebLfajljouUiXNPif/5Glttmfw/WxHLd32ytrWXNsKV3sukewJxKzIWxS6TucTLZRRX8lskfh5G82BJ/KZQL3AqgnFJ5r/B+OaMfj84fZBVEkFYt3oDcJ6dbzZqUFUcJdhAMJUGUTTUwKTmvRHxyQu8OwMP6bWTXLbfkVL03N36glN5c1knok/ISvSBW9ZHnGmvv+cDvqf+1+yDhhiLOwavB50ATjmNhH13CMJlgCZj6vWy7wIDAQAB",
  "manifest_version": 3,
  "name": "SDR-GPT",
  "version": "0.0.65",
  "description": "The official SDR-GPT chrome extension. Hyper personalization on auto-pilot.",
  "externally_connectable": {
    "ids": [
      "epoocblhpbnjpbdadcgcfbhbllepflnk"
    ],
    "matches": [
      "http://localhost:3000/*",
      "https://app.sdr-gpt.com/*"
    ]
  },
  "options_ui": {
    "page": "src/pages/options/index.html"
  },
  "background": {
    "service_worker": "src/pages/background/index.js",
    "type": "module"
  },
  "action": {
    "default_title": "SDR-GPT",
    "default_popup": "src/pages/popup/index.html",
    "default_icon": "icon-34.png"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://linkedin.com/*",
        "https://www.linkedin.com/*",
        "https://web.outreach.io/*",
        "https://app.salesloft.com/*"
      ],
      "js": [
        "src/pages/content/index.js"
      ],
      "css": [
        "contentStyle.css"
      ]
    },
    {
      "matches": [
        "https://app.sdr-gpt.com/*",
        "https://sdr-gpt.com/*"
      ],
      "js": [
        "src/pages/content/webapp.js"
      ]
    },
    {
      "matches": [
        "https://web.outreach.io/*"
      ],
      "js": [
        "src/pages/content/outreach.js"
      ]
    },
    {
      "matches": [
        "https://app.salesloft.com/*"
      ],
      "js": [
        "src/pages/content/salesloft.js"
      ]
    }
  ],
  "devtools_page": "src/pages/devtools/index.html",
  "host_permissions": [
    "https://ingress.coralogix.com/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "contentStyle.css",
        "icon-128.png",
        "icon-34.png",
        "fonts/Lato/Lato-Regular.ttf",
        "fonts/Lato/Lato-Bold.ttf",
        "fonts/Lato/Lato-Italic.ttf"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ]
}