Font Smoothing

Font Smoothing

Adds configurable font anti-aliasing to all webpages you visit.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Font Smoothing",
  "description": "Adds configurable font anti-aliasing to all webpages you visit.",
  "version": "0.1.0",
  "browser_action": {
    "default_icon": "[email protected]",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "[email protected]",
    "48": "[email protected]",
    "128": "[email protected]"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "apply-smoothing.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "storage",
    "https://ajax.googleapis.com/"
  ]
}