Tab Switcher

Tab Switcher

'In window', keyboard driven, tab switcher for simple, OS like, navigation! * PLEASE READ THE INSTRUCTIONS ON THE OPTIONS PAGE *

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "0.1.9",
  "manifest_version": 2,
  "description": "__MSG_appDescription__",
  "homepage_url": "https://bitbucket.org/barclaycodes/chrome-tab-switcher/wiki/Home",
  "offline_enabled": true,
  "options_page": "options.html",
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "styles/main.css"
      ],
      "js": [
        "scripts/client-scripts/app.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "commands": {
    "nextTab": {
      "suggested_key": {
        "windows": "Alt+N",
        "mac": "Alt+N",
        "chromeos": "Alt+N",
        "linux": "Alt+N"
      },
      "description": "Next tab in window"
    },
    "previousTab": {
      "suggested_key": {
        "windows": "Alt+P",
        "mac": "Alt+P",
        "chromeos": "Alt+P",
        "linux": "Alt+P"
      },
      "description": "Previous tab in window"
    }
  },
  "permissions": [
    "windows",
    "tabs",
    "storage",
    "chrome://favicon/",
    "<all_urls>"
  ]
}