Backup and Restore Tabs

Backup and Restore Tabs

Backup all opened urls, and restore them next time.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Backup and Restore Tabs",
  "description": "Backup all opened urls, and restore them next time.",
  "version": "1.1.0.4",
  "manifest_version": 2,
  "icons": {
    "16": "img/logo.16.png",
    "48": "img/logo.48.png",
    "128": "img/logo.128.png"
  },
  "browser_action": {
    "default_icon": "img/logo.48.png",
    "default_title": "backup and restore tabs",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "scripts": [
      "bkgd/Storage.js",
      "bkgd/WindowTabUtils.js",
      "bkgd/Section.js",
      "bkgd/SavedWindowsSection.js",
      "bkgd/LastClosedWindowTabsSection.js",
      "bkgd/NotClosedWindowsSection.js",
      "bkgd/Background.js"
    ]
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "ftp://*/*"
  ]
}