Gmail label column resizer

User script that allows the labels column in Gmail to be resized
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "content_scripts": [
    {
      "js": [
        "chromeGmailResizer_new.user.js"
      ],
      "matches": [
        "http://*.gmail.com/*",
        "http://mail.google.com/*",
        "https://*.gmail.com/*",
        "https://mail.google.com/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "converted_from_user_script": true,
  "description": "User script that allows the labels column in Gmail to be resized",
  "name": "Gmail label column resizer",
  "version": "1.3.1",
  "permissions": [
    "https://mail.google.com/*",
    "http://mail.google.com/*"
  ]
}