Alt+Tabs

Alt+Tabs

About: Alt+Tabs is a Google Chrome extension that provides tabs switching functionality in addition to those offered by the Chrome…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Alt+Tabs",
  "version": "1.0.0",
  "author": "leopitcher",
  "icons": {
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "<all_urls>"
  ],
  "browser_action": {
    "default_icon": "images/logo.png",
    "default_title": "Alt Tabs"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery.min.js",
        "js/content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "commands": {
    "toggle-tabs-switching": {
      "suggested_key": {
        "default": "Alt+Q",
        "mac": "Alt+Q",
        "chromeos": "Alt+Q",
        "linux": "Alt+Q"
      },
      "description": "Toggle tabs switching"
    },
    "toggle-tabs-window": {
      "suggested_key": {
        "default": "Alt+W",
        "mac": "Alt+W",
        "chromeos": "Alt+W",
        "linux": "Alt+W"
      },
      "description": "Toggle tabs window"
    },
    "reverse-tab-selection": {
      "suggested_key": {
        "default": "Alt+Shift+W",
        "mac": "Alt+Shift+W",
        "chromeos": "Alt+Shift+W",
        "linux": "Alt+Shift+W"
      },
      "description": "Reverse tab selection"
    }
  },
  "web_accessible_resources": [
    "images/*.png",
    "templates/*",
    "styles/*"
  ]
}