Gmail label column resizer

Gmail label column resizer

User script that allows the labels column in Gmail to be resized

Merlin
Additional files are visible only to premium users

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/*"
  ]
}