SaveTabs

SaveTabs

Save the tabs in your current window to a new, timestamped, bookmarks folder.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SaveTabs",
  "author": "Chris Dzombak <http://chris.dzombak.name>",
  "manifest_version": 2,
  "version": "0.5",
  "description": "Save the tabs in your current window to a new, timestamped, bookmarks folder.",
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "Save tabs in a new bookmarks folder"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "homepage_url": "http://github.com/cdzombak/SaveTabs",
  "options_page": "options.html",
  "permissions": [
    "bookmarks",
    "tabs",
    "alarms"
  ],
  "icons": {
    "16": "icon/icon-16.png",
    "48": "icon/icon-48.png",
    "128": "icon/icon-128.png"
  }
}