TabSaver

TabSaver

This extension stores opened tabs to reopen after browser restart.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2eJLKagxKdCEVODJsWYDScd/EfFZ9P2QU2wpm3X4y96ilqagWz7ufN3w7NEx5bM5Jwl+p7A3olNpvfFamKPBd/5brkPU/OGby8o4CuTFgqAxLR4hKn2MT5JOVCURh2kwso+rFPA0RbRd19S7aaEsYlNd7dxw61qCIhjnKB8VZDtZMZYFuvCKkZIS7sh4x2sZ67Xs/sYafGp62cE55toLgLkoC5IHU9Ihhnn13UWr2C1JZwTnWPeQ5fIoGw8U1k4Ji6kxg8iRIfRtn7iK8WRPErKxvrKX3MXPf5kzHVE5KwMWN2vhrlDYKpEM3vb9OsbOlquRxNASTRKsdAmQNoP+2wIDAQAB",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "short_name": "__MSG_appDescShort__",
  "default_locale": "en",
  "version": "1.2.2",
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com https://stats.g.doubleclick.net https://ajax.googleapis.com; object-src 'self'",
  "permissions": [
    "identity",
    "tabs",
    "storage",
    "<all_urls>",
    "chrome://favicon/"
  ],
  "browser_action": {
    "default_icon": "icons/icon-16.png",
    "default_title": "__MSG_defTitle__",
    "default_popup": "dialog.html"
  },
  "background": {
    "scripts": [
      "scripts/background.js"
    ],
    "persistent": false
  },
  "oauth2": {
    "client_id": "964586246721-6mds11vg9s3ati3s1nugogp30ac876va.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/userinfo.profile",
      "https://www.googleapis.com/auth/contacts.readonly"
    ]
  },
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  }
}