Examine source code of Discard Tab

Inspect and view changes in Discard Tab 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": "Discard Tab",
  "description": "Discard tabs to free up resources",
  "version": "2.1",
  "icons": {
    "48": "icon.svg"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "commands": {
    "discard-tab-command": {
      "suggested_key": {
        "default": "Alt+U"
      },
      "description": "Discard Current Tab"
    }
  },
  "permissions": [
    "tabs",
    "contextMenus",
    "activeTab"
  ]
}