Examine source code of ParaReader

Inspect and view changes in ParaReader source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "ParaReader",
  "version": "0.3",
  "description": "Read selected text comfortably",
  "permissions": [
    "activeTab"
  ],
  "background": {
    "scripts": [
      "reader-bg.js"
    ]
  },
  "commands": {
    "toggle-feature": {
      "suggested_key": {
        "default": "Alt+Shift+X",
        "mac": "Ctrl+Shift+X"
      },
      "description": "Send a 'toggle-feature' event to the extension"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "tingle.js",
        "reader.js"
      ],
      "css": [
        "tingle.css",
        "reader.css"
      ]
    }
  ]
}