Examine source code of Simple Tab Saver

Inspect and view changes in Simple Tab Saver source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
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
    }
  }
}