Examine source code of Microsoft Edge Games as a Sidebar

Inspect and view changes in Microsoft Edge Games as a Sidebar 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
{
  "manifest_version": 2,
  "name": "Microsoft Edge Games as a Sidebar",
  "description": "Displays a sidebar that lets you see your tasks on Microsoft Edge Games.",
  "version": "3.0",
  "applications": {
    "gecko": {
      "strict_min_version": "73.0",
      "id": "{89d30c94-ac76-42b8-9fbb-348eb30cec71}"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "40": "icons/edge_hub_apps_maximal_games_light.png"
  },
  "sidebar_action": {
    "browser_style": true,
    "default_icon": "icons/edge_hub_apps_maximal_games_light.png",
    "default_title": "Games",
    "default_panel": "index.html"
  },
  "browser_action": {
    "browser_style": true,
    "default_icon": "icons/edge_hub_apps_maximal_games_light.png",
    "default_title": "Games",
    "theme_icons": [
      {
        "dark": "icons/edge_hub_apps_maximal_games_dark.png",
        "light": "icons/edge_hub_apps_maximal_games_light.png",
        "size": 32
      }
    ]
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "commands": {
    "_execute_sidebar_action": {
      "suggested_key": {
        "default": "Ctrl+Alt+G"
      }
    }
  }
}