Elements of Typographic Stylesheet

Elements of Typographic Stylesheet

Make the web look like a book.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "chromeController.js"
    ]
  },
  "page_action": {
    "default_icon": "img/Chrome/enabled.png",
    "default_title": "__MSG_tooltip__"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start",
      "css": [
        "stylesheets/theelementsoftypographicstylesheet.css"
      ]
    }
  ],
  "default_locale": "en",
  "description": "__MSG_extDescription__",
  "icons": {
    "32": "Icon-32.png",
    "48": "Icon-48.png",
    "64": "Icon-64.png",
    "128": "Icon-128.png",
    "512": "Icon-512.png"
  },
  "name": "__MSG_extName__",
  "permissions": [
    "tabs",
    "http://*/",
    "https://*/"
  ],
  "version": "1.3.8",
  "manifest_version": 2
}