WikiReader: Wikipedia Simplified

WikiReader: Wikipedia Simplified

Get what you need from Wikipedia with a simple and beautiful interface.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "default_locale": "en",
  "minimum_chrome_version": "33",
  "name": "WikiReader: Wikipedia Simplified",
  "short_name": "WikiReader",
  "description": "Get what you need from Wikipedia with a simple and beautiful interface.",
  "version": "1.5",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": "icon19.png",
    "default_title": "WikiReader"
  },
  "background": {
    "scripts": [
      "dist/js/jquery.min.js",
      "dist/js/background.min.js"
    ],
    "persistent": false
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "*://*.wikipedia.org/*"
      ],
      "css": [
        "dist/css/wiki.min.css"
      ],
      "js": [
        "dist/js/jquery.min.js",
        "dist/js/wiki.min.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "dist/fonts/*.woff2",
    "dist/img/*"
  ],
  "permissions": [
    "activeTab",
    "tabs",
    "storage"
  ]
}