Adjust HackerNews Font Size

Adjust HackerNews Font Size

Adjust news.ycombinator.com font size, and save your local setting.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Adjust HackerNews Font Size",
  "manifest_version": 2,
  "version": "3.1.2",
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "description": "Adjust news.ycombinator.com font size, and save your local setting.",
  "content_scripts": [
    {
      "matches": [
        "http://news.ycombinator.com/*",
        "https://news.ycombinator.com/*"
      ],
      "js": [
        "hnfontsize.js"
      ]
    }
  ],
  "permissions": [
    "http://news.ycombinator.com/*",
    "https://news.ycombinator.com/*",
    "storage"
  ],
  "web_accessible_resources": [
    "font_size.gif"
  ]
}