Close Tabs to the right Button

Close all tabs to the right of the current tab.
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": "[email protected]",
      "strict_min_version": "42.0"
    }
  },
  "author": "Michael Buckley",
  "background": {
    "scripts": [
      "tb-close-tabs-right-background.js"
    ]
  },
  "browser_action": {
    "browser_style": true,
    "default_icon": {
      "16": "icons/16-tabs-delete.png",
      "24": "icons/24-tabs-delete.png",
      "32": "icons/32-tabs-delete.png",
      "48": "icons/48-tabs-delete.png"
    },
    "default_title": "__MSG_tbCloseTabsRightLabel__"
  },
  "default_locale": "en_US",
  "description": "Close all tabs to the right of the current tab.",
  "homepage_url": "https://codefisher.org/toolbar_button/",
  "icons": {
    "16": "icons/16-tabs-delete.png",
    "24": "icons/24-tabs-delete.png",
    "32": "icons/32-tabs-delete.png",
    "48": "icons/48-tabs-delete.png"
  },
  "manifest_version": 2,
  "name": "Close Tabs to the right Button",
  "options_ui": {
    "browser_style": true,
    "page": "option/option.html"
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "version": "1.5resigned1"
}