Reader View

Reader View

Transplanted from Safari's. Just click a icon in the address bar and you'll get a readability page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "code/js/common.js",
      "lib/jquery.min.js",
      "background.js"
    ]
  },
  "commands": {
    "toggle_readerview": {
      "description": "__MSG_toggleCommandTitle__",
      "suggested_key": {
        "default": "Alt+R"
      }
    }
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "lib/jquery.min.js",
        "code/js/config.js",
        "code/js/common.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    },
    {
      "all_frames": true,
      "js": [
        "lib/reader.js",
        "code/js/page.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "default_locale": "en",
  "description": "__MSG_description__",
  "icons": {
    "16": "code/img/icon16.png",
    "48": "code/img/icon48.png",
    "128": "code/img/icon128.png"
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAgw3IBPrHakfrq4K6hpeQzjZ/zQz0wD/gp9l9Py1c7Oh1l2MOl8xUr2niSxWlzVSOWY+pP0qQqyFFe/aQSYKNGXILRQD/CEWI6jjdZiWhyn5vWayB2lMY359EFtC+7c2pquGdYbYPvKNgK0JrINKhVhm2Mm61/xS5ysdJtbC6rhwo2uDkvo7ZYbQa6yPjKQZRkaqSlQ56f2OduBLsKs5eP5fO6Dm9vbcpcrP4xPrXg5nRAVjUPI77rERDvSlNzL8f3G9xME/u2J/H05v7Za8RdaHe4UK3qO/BWi/4M4DIfeqR6PycgEulI5U1IJwu16KyyvLIjcAtAWhcg3Am97fkEwIDAQAB",
  "manifest_version": 2,
  "name": "__MSG_name__",
  "page_action": {
    "default_title": "__MSG_iconTips__"
  },
  "permissions": [
    "storage",
    "tabs",
    "*://*/*"
  ],
  "short_name": "iReader View Mode",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "2.8.2",
  "web_accessible_resources": [
    "code/html/view.html"
  ]
}