Tab Shifter

Tab Shifter

NOTE: This extension does not work on Macs (I don't have a Mac and never tested it on a Mac. Maybe sometime in the future!) With…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Tab Shifter",
  "version": "1.13",
  "permissions": [
    "background",
    "storage"
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "inject.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_page": "options.html",
  "manifest_version": 2
}