MaxWidth

MaxWidth

Set the max width of the webpage to 1920px. This is very helpful if you're using an ultra-wide screen. Updated on Mar 7 2017.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "MaxWidth",
  "version": "1.5",
  "author": "Tim Zhuang",
  "permissions": [
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "jquery-3.1.1.min.js",
        "w.js"
      ],
      "run_at": "document_end"
    }
  ]
}