Trident Extension

Trident Extension

Trident Extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Trident Extension",
  "description": "Trident Extension",
  "version": "11.0.0",
  "manifest_version": 3,
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {},
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "jquery-3.4.1.min.js",
        "./content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*",
        "*.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {},
  "permissions": [
    "activeTab",
    "tabs",
    "background",
    "scripting",
    "unlimitedStorage",
    "tabs",
    "background",
    "unlimitedStorage",
    "nativeMessaging"
  ],
  "externally_connectable": {
    "matches": [
      "https://trident.dialoga.io/hubspot/*",
      "https://api.hubapi.com/*",
      "https://*.hubspot.com/*",
      "https://app.hubspot.com/*"
    ]
  },
  "host_permissions": [
    "http://*/",
    "https://*/",
    "https://*.hubspot.com/*",
    "https://app.hubspot.com/*",
    "https://api.hubapi.com/*"
  ]
}