3D Flip Tab Switch

3D Flip Tab Switch

Switch between tabs by flip through the thumbnail or title of tabs in 3D view

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "3D Flip Tab Switch",
  "version": "0.1.3",
  "description": "Switch between tabs by flip through the thumbnail or title of tabs in 3D view",
  "background": {
    "persistent": false,
    "scripts": [
      "js/eventPage.js"
    ]
  },
  "browser_action": {
    "default_icon": "image/icon-128.png",
    "default_title": "3D Flip Tab Switch",
    "default_popup": "html/chrome-3d-flip.html"
  },
  "icons": {
    "16": "image/icon-16.png",
    "48": "image/icon-48.png",
    "128": "image/icon-128.png"
  },
  "permissions": [
    "<all_urls>",
    "tabs",
    "storage",
    "unlimitedStorage"
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Alt+T",
        "mac": "Alt+T",
        "chromeos": "Alt+T",
        "linux": "Alt+T"
      }
    }
  },
  "options_ui": {
    "page": "options/options.html",
    "chrome_style": true
  },
  "manifest_version": 2
}