High Wiki

High Wiki

Read everything on Wikipedia in just one tab. For the intellectually curious and chronic procrastinators

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "High Wiki",
  "description": "Read everything on Wikipedia in just one tab. For the intellectually curious and chronic procrastinators",
  "version": "3.1",
  "browser_action": {
    "default_icon": "assets/icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.wikipedia.org/wiki/*",
        "http://*.wikipedia.org/wiki/*"
      ],
      "js": [
        "libs/jquery.min.js",
        "libs/singleClick.js",
        "build/bundle.js"
      ],
      "css": [
        "highwiki.css"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "https://*.wikipedia.org/wiki/*",
    "http://*.wikipedia.org/wiki/*"
  ]
}