Chrome Font Super Enhancer

Chrome Font Super Enhancer

Enhanced font rendering in Chrome!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Chrome Font Super Enhancer",
  "description": "Enhanced font rendering in Chrome!",
  "version": "2.17",
  "manifest_version": 3,
  "author": "ME",
  "options_ui": {
    "page": "options.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "/images/fixfonts16.png",
    "32": "/images/fixfonts32.png",
    "48": "/images/fixfonts48.png",
    "128": "/images/fixfonts128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/fixfonts16.png",
      "32": "/images/fixfonts32.png",
      "48": "/images/fixfonts48.png",
      "128": "/images/fixfonts128.png"
    }
  }
}