Simple Tab Saver

Simple Tab Saver

Simple and easy to use. Save and recover the tabs whenever you want, in just one click, and without pop-ups.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "short_name": "Tab Saver",
  "version": "1.9.8",
  "description": "__MSG_appDesc__",
  "author": "Roger Pedrós.",
  "default_locale": "en",
  "icons": {
    "48": "Resources/Icons/iconBlue.png",
    "128": "Resources/Icons/iconBlue.png"
  },
  "browser_action": {
    "default_icon": "Resources/Icons/iconBlue.png",
    "default_title": "__MSG_appName__"
  },
  "options_page": "App/Settings/settings.html",
  "background": {
    "page": "Background/background.html"
  },
  "incognito": "spanning",
  "permissions": [
    "tabs",
    "storage",
    "notifications",
    "bookmarks",
    "unlimitedStorage"
  ],
  "content_security_policy": "script-src 'self' https://www.gstatic.com/ https://apis.google.com/ https://www.google-analytics.com/; object-src 'self' ",
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "mac": "Command+U",
        "windows": "Ctrl+U",
        "chromeos": "Ctrl+U",
        "linux": "Ctrl+U",
        "default": "Ctrl+U"
      },
      "global": false
    }
  }
}