AutoSave – for Hubspot

AutoSave – for Hubspot

Automatically clicks save buttons on Hubspot!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "AutoSave – for Hubspot",
  "description": "Automatically clicks save buttons on Hubspot!",
  "version": "0.0.4",
  "action": {
    "default_icon": "images/icon-16.png"
  },
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "options_page": "/pages/options.html",
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "https://*.hubspot.com/*"
      ]
    }
  ],
  "permissions": [
    "scripting",
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "https://*.hubspot.com/*"
  ]
}