view manifest.json.in @ 17:6b4680867e49

Remove incorrect specification of the tab position when creating new tabs The index parameter of browser.tabs.create() does not accept -1, leaving it out adds the newly created tab on the rightmost position as intended (bug reported by Daniele).
author Guido Berhoerster <guido+tab-mover@berhoerster.name>
date Thu, 31 May 2018 12:57:40 +0200
parents e4391e12b799
children 4704e5216412
line wrap: on
line source

{
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "version": "@VERSION@",
  "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"
    ]
  }
}