view manifest.json @ 12:e32b90567f39

Update menu when reopening a tab Creating a tab changes the focused tab in the destination window, thus the menu item representing the destination window needs to be updated.
author Guido Berhoerster <guido+tab-mover@berhoerster.name>
date Mon, 20 Feb 2017 18:07:00 +0100
parents a003955c8b23
children
line wrap: on
line source

{
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "version": "3",
  "description": "__MSG_extensionDescription__",
  "author": "Guido Berhoerster",
  "homepage_url": "https://code.guido-berhoerster.org/addons/firefox-addons/tab-mover/",
  "applications": {
      "gecko": {
          "id": "tab-mover@code.guido-berhoerster.org",
          "strict_min_version": "51.0"
      }
  },
  "icons": {
      "48": "icons/tab-mover-48.png",
      "96": "icons/tab-mover-96.png"
  },
  "default_locale": "en",
  "permissions": [
    "contextMenus",
    "tabs"
  ],
  "background": {
    "scripts": [
        "background.js"
    ]
  }
}