Fine Print

Fine Print

Chrome Extension for Improving Printed Version of Popular Online Websites

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Fine Print",
  "short_name": "Fine Print",
  "description": "Chrome Extension for Improving Printed Version of Popular Online Websites",
  "version": "1.1.0",
  "icons": {
    "128": "icon/default.png"
  },
  "background": {
    "scripts": [
      "validator.js",
      "page_rules.js",
      "background.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "css/*"
  ],
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "injector.js"
      ]
    }
  ],
  "permissions": []
}