Step Guide Creator

Step Guide Creator

Quickly create software training and help documentation by recording actions inside web applications.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.5",
  "manifest_version": 2,
  "name": "Step Guide Creator",
  "description": "Quickly create software training and help documentation by recording actions inside web applications.",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "iframe.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "background": {
    "persistent": true,
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "img/icon.png"
  },
  "permissions": [
    "<all_urls>",
    "storage",
    "unlimitedStorage",
    "tabs"
  ],
  "icons": {
    "128": "img/icon.png"
  },
  "web_accessible_resources": [
    "/media/extension/img/*"
  ]
}