Guide Creator by HubSpot

Guide Creator by HubSpot

Guide Creator lets users create how-to guides automatically by capturing screenshots as they navigate the web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Guide Creator by HubSpot",
  "description": "Guide Creator lets users create how-to guides automatically by capturing screenshots as they navigate the web.",
  "icons": {
    "16": "img/Favicon 16.png",
    "32": "img/Favicon 32.png",
    "48": "img/Favicon 48.png",
    "128": "img/Favicon 128.png"
  },
  "version": "1.3.3230",
  "action": {
    "default_popup": "html/popup.html",
    "default_icon": {
      "16": "img/Favicon 16.png",
      "24": "img/Favicon 24.png",
      "32": "img/Favicon 32.png"
    }
  },
  "default_locale": "en",
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "storage",
    "tabs",
    "scripting",
    "system.display"
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "externally_connectable": {
    "matches": [
      "https://*.hubspotqa.com/*",
      "https://*.hubspot.com/*"
    ]
  },
  "content_scripts": [
    {
      "css": [
        "css/inject.css"
      ],
      "js": [
        "js/inject.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "img/*",
        "css/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "html/panel.html"
      ],
      "matches": [
        "<all_urls>"
      ],
      "use_dynamic_url": true
    }
  ]
}