Save Your Tabs for Later

Save Your Tabs for Later

Save all tabs in a window to check it later and keep browsing other topics on the internet or just changing task.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Save Your Tabs for Later",
  "description": "Save all tabs in a window to check it later and keep browsing other topics on the internet or just changing task.",
  "version": "1.0.2",
  "shortName": "Save tabs",
  "background": {
    "persistent": true,
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "browser_action": {
    "default_icon": "media/icon.png",
    "default_popup": "index.html"
  }
}