Trainn

Trainn

Accelerate user adoption by creating professional product training content for your software.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Trainn",
  "description": "Accelerate user adoption by creating professional product training content for your software.",
  "version": "1.3.3",
  "manifest_version": 2,
  "icons": {
    "16": "icons/icon_16.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "permissions": [
    "tabCapture",
    "storage",
    "tabs",
    "notifications"
  ],
  "commands": {
    "switch-tab": {
      "suggested_key": {
        "default": "Ctrl+Shift+Space",
        "mac": "Command+Shift+Space"
      },
      "description": "Switch recording to current tab"
    },
    "swith-tab-alternate": {
      "suggested_key": {
        "default": "Ctrl+Shift+1",
        "mac": "Command+Shift+1"
      },
      "description": "Alternate command to switch recording to current tab"
    }
  },
  "browser_action": {
    "default_title": "trainn",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ],
      "css": [
        "stylesheets/content-script.css"
      ],
      "run_at": "document_idle",
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://*.trainn.co/*"
    ]
  }
}