HubX (by Neambo)

HubX (by Neambo)

Copy modules and groups in the new HubSpot Design Tools

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "HubX (by Neambo)",
  "description": "Copy modules and groups in the new HubSpot Design Tools",
  "version": "0.27",
  "icons": {
    "48": "img/hubx-logo-48.png",
    "128": "img/hubx-logo-128.png"
  },
  "background": {
    "scripts": [
      "js/jquery-2.1.3.min.js",
      "js/background.min.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_title": "HubX by Neambo",
    "default_icon": "img/hubx-logo-32.png",
    "default_popup": "popup.html"
  },
  "options_page": "options.html",
  "permissions": [
    "declarativeContent",
    "storage",
    "https://app.hubspot.com/design-manager/*",
    "https://api.hubspot.com/*"
  ],
  "content_scripts": [
    {
      "js": [
        "js/jquery-2.1.3.min.js",
        "js/jquery.initialize.min.js",
        "js/hubx.min.js"
      ],
      "css": [
        "css/hubx.css"
      ],
      "matches": [
        "https://app.hubspot.com/design-manager/*"
      ]
    }
  ],
  "web_accessible_resources": [
    "img/hubx-icon.svg",
    "img/error-icon.png"
  ]
}