Tab2Front

Tab2Front

Organize tabs by moving important tabs to the front of the window with a keyboard shortcut. If you find yourself looking for tabs…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Tab2Front",
  "version": "0.3",
  "permissions": [
    "activeTab"
  ],
  "incognito": "spanning",
  "commands": {
    "mtf": {
      "suggested_key": {
        "default": "Alt+V",
        "mac": "Alt+V"
      },
      "description": "main command t2f"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "icon.png"
  }
}