Hubspot on Steroids

Hubspot on Steroids

'Hubspot on Steroids' makes Hubspot easier to use by enhancing and changing how customer data is displayed.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Hubspot on Steroids",
  "description": "'Hubspot on Steroids' makes Hubspot easier to use by enhancing and changing how customer data is displayed.",
  "version": "1.0.2",
  "content_scripts": [
    {
      "css": [
        "css/myStyles.css"
      ],
      "matches": [
        "https://app.hubspot.com/*"
      ],
      "js": [
        "js/content.js",
        "js/jquery-3.4.1.js",
        "js/moment.min.js",
        "js/bootstrap.min.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://cdn.heapanalytics.com/js/heap-1955539342.js https://heapanalytics.com; object-src 'self'",
  "permissions": [
    "storage",
    "https://app.hubspot.com/*"
  ],
  "background": {
    "scripts": [
      "js/background.js",
      "js/heapanalytics.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": {
      "48": "images/HoS-48.png"
    },
    "default_popup": "popup/popup.html"
  },
  "icons": {
    "16": "images/HoS-16.png",
    "32": "images/HoS-32.png",
    "48": "images/HoS-48.png",
    "128": "images/HoS-128.png"
  },
  "options_page": "config/Config.html",
  "web_accessible_resources": [
    "/images/ajax-loader.gif",
    "/images/HoS-128.png",
    "/images/linkedin.png",
    "/images/HoS-16.png",
    "/images/chain-link.png",
    "/images/red-arrow.png",
    "/images/HOS-logo.png",
    "config/AdvanceConfig.html",
    "config/Config.html"
  ]
}