TabMate

TabMate

TabMate helps you manage tab clutter. Easily switch between tabs across all open windows, save/restore set of tabs/windows

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "TabMate",
  "version": "0.8.2",
  "description": "TabMate helps you manage tab clutter. Easily switch between tabs across all open windows, save/restore set of tabs/windows",
  "author": "Abhilash",
  "icons": {
    "16": "icons/tabmate.png",
    "48": "icons/tabmate.png",
    "128": "icons/tabmate.png"
  },
  "browser_action": {
    "default_title": "TabMate",
    "default_icon": "icons/tabmate.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "tabs",
    "contextMenus"
  ],
  "offline_enabled": true,
  "options_page": "options.html",
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+K"
      }
    }
  }
}