Mac Fullscreen Tab Mover

Mac Fullscreen Tab Mover

Best tool for moving your tabs around!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": " Mac Fullscreen Tab Mover",
  "short_name": "MFTM",
  "description": "Best tool for moving your tabs around!",
  "version": "1.1.0.0",
  "manifest_version": 2,
  "offline_enabled": true,
  "options_page": "options.html",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "Current tab as new window"
  },
  "background": {
    "scripts": [
      "script.js"
    ],
    "persistent": true
  },
  "commands": {
    "Ctrl+Shift+Up": {
      "suggested_key": {
        "default": "Ctrl+Shift+Up",
        "mac": "Ctrl+Shift+Up"
      },
      "description": "Move tab to new window",
      "global": true
    },
    "Ctrl+Shift+Down": {
      "suggested_key": {
        "default": "Ctrl+Shift+Down",
        "mac": "Ctrl+Shift+Down"
      },
      "description": "Toggle tab between different sized windows",
      "global": true
    },
    "Ctrl+Shift+Right": {
      "suggested_key": {
        "default": "Ctrl+Shift+Right",
        "mac": "Ctrl+Shift+Right"
      },
      "description": "Move tab to right window",
      "global": true
    },
    "Ctrl+Shift+Left": {
      "suggested_key": {
        "default": "Ctrl+Shift+Left",
        "mac": "Ctrl+Shift+Left"
      },
      "description": "Move tab to left window",
      "global": true
    }
  }
}