Bookmark All My Tabs

Bookmark All My Tabs

Bookmark all tabs open in the current window.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Bookmark All My Tabs",
  "description": "Bookmark all tabs open in the current window.",
  "version": "1.0",
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "permissions": [
    "bookmarks",
    "tabs"
  ],
  "background": {
    "scripts": [
      "bookmarkAllMyTabs.js"
    ]
  },
  "browser_action": {
    "default_title": "Bookmark All My Tabs",
    "default_icon": "icon_48.png"
  }
}