Examine source code of JumpSeat

Inspect and view changes in JumpSeat source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "JumpSeat",
  "version": "5.6.0",
  "manifest_version": 2,
  "author": "LeapPoint, LLC",
  "description": "The enterprise on-screen guidance platform.",
  "browser_action": {
    "default_title": "JumpSeat",
    "default_icon": {
      "16": "icons/icon16.png",
      "20": "icons/icon20.png",
      "32": "icons/icon32.png",
      "48": "icons/icon48.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "web_accessible_resources": [
    "icons/icon16.png",
    "icons/icon20.png",
    "icons/icon32.png",
    "icons/icon44.png",
    "icons/icon48.png",
    "icons/icon50.png",
    "icons/icon100.png",
    "icons/icon128.png",
    "icons/icon150.png",
    "icons/icon256.png",
    "icons/icon512.png",
    "icons/icon1024.png",
    "images/jumpseat-icon.svg",
    "images/jumpseat-logo.svg",
    "images/jumpseat-logo.png"
  ],
  "permissions": [
    "https://*/*",
    "storage"
  ],
  "storage": {
    "managed_schema": "managed.json"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "match_about_blank": true,
      "all_frames": true,
      "run_at": "document_end",
      "js": [
        "jumpseat-extension.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}