Surfe

Surfe

Bring your CRM to where your sales are. Access and edit your CRM from anywhere, move with ease, and build better relationships.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Bring your CRM to where your sales are. Access and edit your CRM from anywhere, move with ease, and build better relationships.",
  "version": "2.5.21",
  "manifest_version": 3,
  "name": "Surfe",
  "author": "Surfe",
  "short_name": "Surfe",
  "homepage_url": "https://www.surfe.com/",
  "permissions": [
    "storage",
    "tabs",
    "cookies",
    "contextMenus",
    "scripting"
  ],
  "host_permissions": [
    "https://linkedin.com/*",
    "https://*.linkedin.com/*",
    "https://*.hubapi.com/*",
    "https://*.hubspot.com/*",
    "https://leadjet.io/*",
    "https://*.leadjet.io/*",
    "https://surfe.com/*",
    "https://*.surfe.com/*"
  ],
  "optional_host_permissions": [
    "https://*/*"
  ],
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "https://linkedin.com/*",
        "https://www.linkedin.com/*"
      ],
      "js": [
        "assets/scripts/boot.js"
      ],
      "all_frames": true
    },
    {
      "run_at": "document_end",
      "matches": [
        "https://linkedin.com/*",
        "https://www.linkedin.com/*",
        "https://leadjet.io/*",
        "https://*.leadjet.io/*",
        "https://surfe.com/*",
        "https://*.surfe.com/*"
      ],
      "js": [
        "inject.js"
      ],
      "css": [
        "inject.css"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": "assets/images/icon.png",
    "default_title": "Surfe"
  },
  "icons": {
    "128": "assets/images/icon.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "assets/media/*"
      ],
      "matches": [
        "<all_urls>"
      ],
      "use_dynamic_url": true
    }
  ]
}