Scroll tab shift

Scroll tab shift

Shift + scroll to change tab (Shiftとスクロールでタブを切り替えるアドオンです)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Scroll tab shift",
  "description": "Right click or Shift + scroll to change tab",
  "version": "1.0.2",
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "http://*/*",
        "https://*/*",
        "ftp://*/*"
      ],
      "js": [
        "pagescript.js"
      ]
    }
  ],
  "icons": {
    "48": "back48.png",
    "128": "back128.png"
  },
  "permissions": [
    "tabs",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}