Tab Manager Shortcuts

Tab Manager Shortcuts

Manage your chrome tabs with keyboard shortcuts.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Tab Manager Shortcuts",
  "version": "2.0.0",
  "description": "Manage your chrome tabs with keyboard shortcuts.",
  "homepage_url": "https://phamdaniel.github.io",
  "icons": {
    "16": "imgs/16.png",
    "48": "imgs/48.png",
    "128": "imgs/128.png"
  },
  "background": {
    "persisten": false,
    "scripts": [
      "background.js"
    ]
  },
  "commands": {
    "tab_manager_pin_current": {
      "description": "Pin or unpin current tab."
    },
    "tab_manager_unpin_all": {
      "description": "Unpin all tabs in current window"
    },
    "tab_manager_move_left": {
      "description": "Move selected tab left"
    },
    "tab_manager_move_right": {
      "description": "Move selected tab right"
    },
    "tab_manager_browse_left": {
      "description": "Switch/browse tab left"
    },
    "tab_manager_browse_right": {
      "description": "Switch/browse tab right"
    }
  }
}