Tab Manager

Tab Manager

Manage tabs inside fullscreen mode

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Tab Manager",
  "version": "2.0.0",
  "manifest_version": 2,
  "description": "Manage tabs inside fullscreen mode",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png"
  },
  "browser_action": {
    "default_title": "Tab Manager",
    "default_popup": "manager.html"
  },
  "options_page": "options.html",
  "background": {
    "scripts": [
      "scripts/background.js"
    ],
    "persistent": false
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+Y",
        "mac": "Command+Shift+Y",
        "chromeos": "Ctrl+Shift+Y",
        "linux": "Ctrl+Shift+Y"
      }
    }
  },
  "permissions": [
    "tabs",
    "storage"
  ]
}