Examine source code of Percipio ELSA

Inspect and view changes in Percipio ELSA 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Percipio ELSA",
  "short_name": "ELSA",
  "version": "1.29.1016",
  "description": "Percipio ELSA – Search, discover, and learn in Percipio, the intelligent learning platform, without ever changing screens.",
  "browser_action": {
    "default_icon": {
      "16": "assets/icon-16.png",
      "32": "assets/icon-32.png",
      "48": "assets/icon-48.png",
      "128": "assets/icon-128.png"
    },
    "default_title": "Percipio ELSA",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "assets/icon-16.png",
    "32": "assets/icon-32.png",
    "48": "assets/icon-48.png",
    "128": "assets/icon-128.png"
  },
  "author": "Skillsoft",
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "<all_urls>"
      ],
      "css": [],
      "js": [
        "./content.bundle.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "identity",
    "https://*.percipio.com/*",
    "contextMenus"
  ],
  "minimum_chrome_version": "60"
}