Hubspot documents by Docspo

Hubspot documents by Docspo

Create, edit and view your Docspo documents directly in Hubspot CRM.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.5",
  "manifest_version": 2,
  "default_locale": "en",
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "content_security_policy": "script-src 'self' ; object-src 'self'",
  "permissions": [
    "https://*.hubspot.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.hubspot.com/contacts/*"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "name": "__MSG_hubspot_docspo_name__",
  "description": "__MSG_hubspot_docspo_description__",
  "homepage_url": "https://app.docspo.com",
  "icons": {
    "16": "icons/docspo/16.png",
    "128": "icons/docspo/128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "icons/docspo/19.png",
      "38": "icons/docspo/38.png"
    },
    "default_title": "Docspo",
    "default_popup": "popup.html"
  }
}