Save my tabs!

Save my tabs!

An open source browser addon/extension to bookmark at once all open tabs to a folder in the Bookmarks Toolbar.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Save my tabs!",
  "version": "1.2.2",
  "description": "Save all open tabs to a bookmark folder",
  "homepage_url": "https://github.com/salvoventura/save-my-tabs",
  "icons": {
    "32": "icons/iconfinder_tab_new_raised_18931.png"
  },
  "permissions": [
    "bookmarks",
    "tabs",
    "alarms",
    "storage"
  ],
  "background": {
    "persistent": true,
    "scripts": [
      "lib/browser-polyfill.min.js",
      "lib/common.js",
      "background/background.js"
    ]
  },
  "options_ui": {
    "open_in_tab": true,
    "page": "options/options.html"
  },
  "browser_action": {
    "default_icon": "icons/iconfinder_tab_new_raised_18931.png",
    "default_title": "Save my tabs!",
    "default_popup": "popup/save-my-tabs.html"
  }
}