Servetel Extension For Hubspot

Servetel Extension For Hubspot

It is an integrated browser extension that offers the inbound and outbound call services to hubspot crm users.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Servetel Extension For Hubspot",
  "description": "It is an integrated browser extension that offers the inbound and outbound call services to hubspot crm users.",
  "version": "0.1.5",
  "icons": {
    "128": "images/favicon.png"
  },
  "action": {
    "default_icon": "images/favicon.png"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*",
        "*://*.hubspot.com/*",
        "*://customer.servetel.in/*",
        "https://www.google.com/*",
        "https://*.acefone.co.uk/*"
      ],
      "js": [
        "Supportedfiles/jquery.min.js",
        "Supportedfiles/jquery-ui.js",
        "findAndReplaceDOMText.js",
        "content.js"
      ],
      "run_at": "document_end",
      "exclude_matches": [
        "file://*/*.pdf",
        "*://*/*.pdf"
      ]
    }
  ],
  "permissions": [
    "notifications",
    "activeTab",
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*",
        "Supportedfiles/*",
        "dialpad.html",
        "index.html",
        "login.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}