Guidethrough Developer

Guidethrough Developer

Guidethrough interactive, live on-screen guidance, training guides & slideshows to train end users of your web applications.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Guidethrough Developer",
  "short_name": "Guidethrough",
  "version": "3.1.3",
  "description": "Guidethrough interactive, live on-screen guidance, training guides & slideshows to train end users of your web applications.",
  "author": "Guidethrough <[email protected]>",
  "manifest_version": 2,
  "homepage_url": "https://guidethrough.com/",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "permissions": [
    "management",
    "tabs",
    "<all_urls>",
    "storage",
    "*://*/*"
  ],
  "externally_connectable": {
    "matches": [
      "*://localhost/*",
      "*://dev-app.guidethrough.com/*",
      "*://staging-app.guidethrough.com/*",
      "*://app.guidethrough.com/*"
    ]
  },
  "browser_action": {
    "default_title": "Guidethrough Developer"
  },
  "background": {
    "persistent": false,
    "page": "pages/background.html"
  },
  "options_page": "pages/options.html",
  "content_scripts": [
    {
      "js": [
        "js/webcomponents-lite.js",
        "js/manifest.js",
        "js/vendor.js",
        "js/content.js"
      ],
      "run_at": "document_end",
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "incognito": "not_allowed",
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "web_accessible_resources": [
    "pages/app.html",
    "js/manifest.js",
    "js/domainWebScripts.js",
    "js/content.js",
    "js/login.js"
  ]
}