Examine source code of Tab Resize & Split Screen Layout

Inspect and view changes in Tab Resize & Split Screen Layout source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "background": {
    "scripts": [
      "js/lib/jquery.min.js",
      "public/tabResize_background.min.js",
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "images/icons/icon128.png",
    "default_popup": "index.html",
    "default_title": "Tab Resize split screen layouts"
  },
  "commands": {
    "tab-resize-0-undo": {
      "description": "Undo previous resize",
      "suggested_key": {
        "default": "Alt+Z"
      }
    },
    "tab-resize-1-1": {
      "description": "Resize 1x1 layout",
      "suggested_key": {
        "default": "Alt+1"
      }
    },
    "tab-resize-1-2": {
      "description": "Resize 1x2 layout",
      "suggested_key": {
        "default": "Alt+2"
      }
    },
    "tab-resize-1-3": {
      "description": "Resize 1x3 layout"
    },
    "tab-resize-2-1": {
      "description": "Resize 2x1 layout"
    },
    "tab-resize-2-2": {
      "description": "Resize 2x2 layout",
      "suggested_key": {
        "default": "Alt+4"
      }
    },
    "tab-resize-3-1": {
      "description": "Resize 3x1 layout"
    },
    "tab-resize-6-4-scale-horizontal": {
      "description": "Resize 6:4 layout"
    },
    "tab-resize-6-4-scale-vertical": {
      "description": "Resize 6:4 vertical layout"
    },
    "tab-resize-7-3-scale-horizontal": {
      "description": "Resize 7:3 layout"
    },
    "tab-resize-7-3-scale-vertical": {
      "description": "Resize 7:3 vertical layout"
    }
  },
  "description": "Split Screen made easy. Resize the CURRENT tab and tabs to the RIGHT into layouts on separate windows. w/ Multi Monitor Support.",
  "icons": {
    "16": "images/icons/icon16.png",
    "48": "images/icons/icon48.png",
    "128": "images/icons/icon128.png"
  },
  "manifest_version": 2,
  "minimum_chrome_version": "30",
  "name": "Tab Resize & Split Screen Layout",
  "offline_enabled": true,
  "options_page": "options.html",
  "options_ui": {
    "chrome_style": true,
    "page": "options.html"
  },
  "permissions": [
    "tabs",
    "system.display",
    "storage",
    "<all_urls>",
    "webRequest",
    "webRequestBlocking"
  ],
  "short_name": "Tab Resize",
  "version": "2.3.5",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}