Tabbo

Tabbo

Tab Management Hotkeys

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "browser_action": {
    "default_icon": "images/tabbo128.png",
    "default_popup": "popup.html"
  },
  "name": "Tabbo",
  "description": "Tab Management Hotkeys",
  "short_name": "Tabbo – Tab Management Hotkeys",
  "version": "0.9.7",
  "icons": {
    "16": "images/tabbo16.png",
    "48": "images/tabbo48.png",
    "128": "images/tabbo128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/utils.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "scripts/utils.js",
      "scripts/background.js"
    ]
  },
  "permissions": [
    "tabs",
    "https://ajax.googleapis.com/",
    "chrome://favicon/",
    "<all_urls>"
  ],
  "commands": {
    "pop_off": {
      "suggested_key": {
        "default": "Ctrl+P"
      },
      "description": "Keybind to pop off the tab",
      "global": false
    },
    "move_right": {
      "suggested_key": {
        "default": "Ctrl+Shift+Period"
      },
      "description": "move current tab to the right",
      "global": false
    },
    "move_left": {
      "suggested_key": {
        "default": "Ctrl+Shift+Comma"
      },
      "description": "move current tab to the left",
      "global": false
    },
    "send_tab": {
      "suggested_key": {
        "default": "Ctrl+Shift+S"
      },
      "description": "move current tab another window",
      "global": false
    }
  }
}