view manifest.json.in @ 32:aaed574396b8

Move pinned tabs correctly Pinned tabs need to be handled separately, the must either be moved before or after other pinned tabs or to index 0. The built-in behavior of the "Move to New Window" action is to unpin tabs. Follow this behavior for consistency. Furthermore, active, pinned tabs are not marked as active. Handle this case as well.
author Guido Berhoerster <guido+tab-mover@berhoerster.name>
date Thu, 08 Apr 2021 11:22:24 +0200
parents 4704e5216412
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"
    ]
  }
}