Keep pinned tabs alive

Keep pinned tabs alive

With this extension, upon closing a window with pinned tabs, the pinned tabs will be moved to another window.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Keep pinned tabs alive",
  "description": "When this extension is enabled, upon closing a window with pinned tabs, the pinned tabs will be moved to another window.",
  "author": "Tiddo Langerak",
  "version": "0.1.0",
  "background": {
    "scripts": [
      "browser-polyfill.min.js",
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "tabs",
    "cookies"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{825525a8-c0d5-4f13-b395-26629dde305e}"
    }
  }
}