Examine source code of Undo Close Tab Button

Inspect and view changes in Undo Close Tab Button 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
{
  "applications": {
    "gecko": {
      "id": "undo-close-tab-buttons-single@codefisher.org",
      "strict_min_version": "50.0"
    }
  },
  "author": "Michael Buckley",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "browser_style": true,
    "default_icon": {
      "16": "icons/16-tab-undo.png",
      "24": "icons/24-tab-undo.png",
      "32": "icons/32-tab-undo.png",
      "48": "icons/48-tab-undo.png"
    },
    "default_popup": "popup/panel.html",
    "default_title": "__MSG_undoCloseTabLabel__"
  },
  "default_locale": "en_US",
  "description": "__MSG_extensionDescription__",
  "homepage_url": "https://codefisher.org/toolbar_button/",
  "icons": {
    "16": "icons/16-tab-undo.png",
    "24": "icons/24-tab-undo.png",
    "32": "icons/32-tab-undo.png",
    "48": "icons/48-tab-undo.png"
  },
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "options_ui": {
    "browser_style": true,
    "page": "option/option.html"
  },
  "permissions": [
    "storage",
    "sessions",
    "tabs",
    "menus"
  ],
  "version": "1.8resigned1"
}