CLUT: Cycle Last Used Tabs

CLUT: Cycle Last Used Tabs

Cycle through last used Chrome tabs using keyboard shortcut.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "CLUT: Cycle Last Used Tabs",
  "description": "Cycle through last used Chrome tabs using keyboard shortcut.",
  "version": "1.7",
  "short_name": "CLUT",
  "permissions": [
    "tabs"
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "commands": {
    "alt_switch_fast": {
      "suggested_key": {
        "default": "Alt+W",
        "mac": "Alt+W"
      },
      "description": "Quick switch - Use to switch quickly among last 2 to 4 tabs. (Suggested: Alt+W)"
    },
    "alt_switch_slow_backward": {
      "suggested_key": {
        "default": "Alt+S",
        "mac": "Alt+S"
      },
      "description": "Normal switch backward (Suggested: Alt+S) "
    },
    "alt_switch_slow_forward": {
      "suggested_key": {
        "default": "Alt+Shift+S",
        "mac": "Alt+Shift+S"
      },
      "description": "Normal switch forward (Suggested: Alt+Shift+S)"
    }
  },
  "browser_action": {
    "default_icon": "icon16.png"
  }
}