HubSpot Social

HubSpot Social

Share and publish to HubSpot from anywhere on the web.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "HubSpot Social",
  "short_name": "HS Social",
  "version": "1.3.2",
  "manifest_version": 3,
  "description": "Share and publish to HubSpot from anywhere on the web.",
  "icons": {
    "16": "img/hubspot-logo-16.png",
    "48": "img/hubspot-logo-48.png",
    "128": "img/logo-128-webstore.png"
  },
  "action": {
    "default_icon": "img/hubspot-logo-16.png"
  },
  "background": {
    "service_worker": "/js/init/background.js",
    "type": "module"
  },
  "incognito": "split",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  },
  "permissions": [
    "contextMenus",
    "storage",
    "activeTab",
    "scripting"
  ],
  "host_permissions": [
    "https://*.hubspot.com/"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "manifest.json",
        "html/iframe-wrapper.html",
        "js/*",
        "js/*.js.map",
        "css/*",
        "img/*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}