view manifest.json.in @ 23:4704e5216412

Create menus on-the-fly Refactor and eliminate the window tracking code by using the onShown/onHidden events available in Firefox 60 in order to create menu entries on-the-fly. Switch from the Firefox-specific contextMenu to the menu API.
author Guido Berhoerster <guido+tab-mover@berhoerster.name>
date Sun, 25 Nov 2018 13:27:47 +0100
parents e4391e12b799
children
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": "60.0"
      }
  },
  "icons": {
      "48": "icons/tab-mover-48.png",
      "96": "icons/tab-mover-96.png"
  },
  "default_locale": "en",
  "permissions": [
    "menus",
    "tabs"
  ],
  "background": {
    "scripts": [
        "background.js"
    ]
  }
}