Contrast Theme for Gmail™

Contrast Theme for Gmail™

Make default Gmail™ New Look (2012) more readable by tweaking contrast, margins and borders.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Contrast Theme for Gmail™",
  "version": "0.1.6",
  "manifest_version": 2,
  "icons": {
    "128": "icon.png"
  },
  "description": "Make default Gmail™ New Look (2012) more readable by tweaking contrast, margins and borders.",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://mail.google.com/mail/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "*://mail.google.com/mail/*"
  ],
  "options_page": "options.html"
}