GMail Label Styler

GMail Label Styler

Set GMail message viewer and editor styles by label. e.g. mailing list messages that are best viewed with a monospace font.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GMail Label Styler",
  "description": "Set GMail message viewer and editor styles by label. e.g. mailing list messages that are best viewed with a monospace font.",
  "version": "0.8",
  "permissions": [
    "https://mail.google.com/",
    "storage"
  ],
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "zepto.min.js",
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "manifest_version": 2
}