Tabs Backup & Restore

Tabs Backup & Restore

Keep manual or automatic backups of all tabs*, and restore on demand. Can also export backup file to disk to restore later, or to another profile, even on another computer or OS, as long as it has Tabs Backup & Restore installed. *(See description)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "version": "0.0.11",
  "default_locale": "en_US",
  "icons": {
    "16": "img/icon.svg",
    "48": "img/icon.svg",
    "128": "img/icon.svg"
  },
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "browser_action": {
    "browser_style": true,
    "default_icon": "img/icon.svg",
    "default_title": "__MSG_appButtonDesc__",
    "default_popup": "popup/popup.html",
    "theme_icons": [
      {
        "light": "img/icon.svg",
        "dark": "img/icon.svg",
        "size": 16
      },
      {
        "light": "img/icon.svg",
        "dark": "img/icon.svg",
        "size": 32
      }
    ]
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options/options.html",
    "browser_style": true
  },
  "permissions": [
    "storage",
    "tabs",
    "unlimitedStorage"
  ]
}