Tab Rocker

Tab Rocker

Cycle between two tabs with a key stroke.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Tab Rocker",
  "version": "1.0.1",
  "manifest_version": 2,
  "description": "Cycle between two tabs with a key stroke.",
  "homepage_url": "https://github.com/metromoxie/tab-rocker",
  "icons": {
    "128": "Tab-Rocker-128.png"
  },
  "offline_enabled": true,
  "permissions": [
    "http://*/*",
    "https://*/*",
    "tabs",
    "storage"
  ],
  "browser_action": {
    "default_icon": "Tab-Rocker-128.png",
    "default_title": "Tab Rocker"
  },
  "options_page": "options.html",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery.js",
        "content.js"
      ]
    }
  ]
}