Save Tabs

Save Tabs

Saves open tabs to the bookmarks for easy sync and for saving memory

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Save Tabs",
  "version": "0.2",
  "description": "Saves open tabs to the bookmarks for easy sync and for saving memory",
  "permissions": [
    "tabs",
    "bookmarks"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_title": "Save Tabs",
    "default_icon": "icon.png"
  },
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' https://ajax.googleapis.com; object-src 'self'"
}