Comic Sanser

Comic Sanser

Put the websites you hate in the font they deserve.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Comic Sanser",
  "description": "Put the websites you hate in the font they deserve.",
  "version": "1.0.1",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start",
      "js": [
        "comicsanser.js"
      ]
    }
  ],
  "options_page": "options.html"
}