ShopBase Helpdesk Connect

ShopBase Helpdesk Connect

Seamlessly access customer and order information from your ShopBase store when handling buyer ticket

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ShopBase Helpdesk Connect",
  "description": "Seamlessly access customer and order information from your ShopBase store when handling buyer ticket",
  "version": "0.0.11",
  "host_permissions": [
    "*://*.myshopbase.net/",
    "*://*.onshopbase.com/",
    "https://*.freshdesk.com/*",
    "https://support.beeketing.com/*",
    "https://app.crisp.chat/*",
    "https://www.tidio.com/*",
    "https://*.gorgias.com/*",
    "https://*.zendesk.com/*"
  ],
  "permissions": [
    "tabs",
    "storage",
    "cookies",
    "declarativeNetRequest"
  ],
  "options_ui": {
    "page": "option.html",
    "open_in_tab": false
  },
  "background": {
    "service_worker": "/background.js"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.freshdesk.com/*",
        "https://support.beeketing.com/*",
        "https://www.rapidtables.com/*",
        "https://app.crisp.chat/*",
        "https://www.tidio.com/*",
        "https://*.gorgias.com/*",
        "https://*.zendesk.com/*"
      ],
      "js": [
        "/content.js"
      ],
      "css": [
        "/content.css"
      ]
    },
    {
      "matches": [
        "https://*.myshopbase.net/*",
        "https://*.onshopbase.com/*"
      ],
      "js": [
        "/login.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/images/*.svg",
        "/images/*.png"
      ],
      "matches": [
        "https://*.freshdesk.com/*",
        "https://support.beeketing.com/*",
        "https://app.crisp.chat/*",
        "https://www.tidio.com/*",
        "https://*.gorgias.com/*",
        "https://*.zendesk.com/*"
      ]
    }
  ],
  "icons": {
    "48": "/images/logo48.png"
  }
}