Binder

Binder

Save commonly used sets of tabs and quickly open them all at once.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Binder",
  "description": "Save commonly used sets of tabs and quickly open them all at once.",
  "version": "1.0.2",
  "icons": {
    "64": "Images/icon64x64.png"
  },
  "options_page": "manager.html",
  "browser_action": {
    "default_icon": "Images/icon64x64.png",
    "default_popup": "popup.html"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "omnibox": {
    "keyword": "binder"
  },
  "permissions": [
    "storage",
    "tabs",
    "windows",
    "bookmarks"
  ]
}