Swift Snap (Window Resizer)

Swift Snap (Window Resizer)

Snap and manage your windows with shortcuts!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Swift Snap (Window Resizer)",
  "version": "1.2.1",
  "description": "Snap and manage your windows with shortcuts!",
  "icons": {
    "16": "icons/swift-snap-16.png",
    "48": "icons/swift-snap-48.png",
    "128": "icons/swift-snap-128.png"
  },
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "browser_action": {
    "default_icon": "icons/swift-snap-48.png",
    "default_title": "Swift Snap",
    "default_popup": "index.html"
  },
  "commands": {
    "swift-snap-left": {
      "suggested_key": {
        "default": "Alt+Shift+Left",
        "mac": "Ctrl+Shift+Left"
      },
      "description": "Swift Snap Left"
    },
    "swift-snap-right": {
      "suggested_key": {
        "default": "Alt+Shift+Right",
        "mac": "Ctrl+Shift+Right"
      },
      "description": "Swift Snap Right"
    },
    "swift-snap-up": {
      "suggested_key": {
        "default": "Alt+Shift+Up",
        "mac": "Ctrl+Shift+Up"
      },
      "description": "Swift Snap Up"
    },
    "swift-snap-down": {
      "description": "Swift Snap Down"
    },
    "move-next-display": {
      "suggested_key": {
        "default": "Alt+Shift+M",
        "mac": "Alt+Shift+M"
      },
      "description": "Move window to next display"
    },
    "swift-snap-xtra-1": {
      "description": "Extra shortcut"
    },
    "swift-snap-xtra-2": {
      "description": "Extra shortcut"
    },
    "swift-snap-xtra-3": {
      "description": "Extra shortcut"
    },
    "swift-snap-xtra-4": {
      "description": "Extra shortcut"
    },
    "swift-snap-xtra-5": {
      "description": "Extra shortcut"
    }
  },
  "permissions": [
    "storage",
    "system.display"
  ]
}