Tab Panel

Tab Panel

This extension allow you to switch tab easly.

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 Panel",
  "short_name": "TabPanel",
  "description": "This extension allow you to switch tab easly.",
  "version": "0.6.1",
  "permissions": [
    "tabs",
    "chrome://favicon/"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "injected.js"
      ]
    }
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+P",
        "windows": "Alt+P",
        "chromeos": "Alt+P",
        "linux": "Alt+P",
        "mac": "Alt+P"
      }
    }
  },
  "offline_enabled": true,
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    "favicons/*.png"
  ]
}