WikiTweaks

WikiTweaks

A restyling of Wikipedia that saves screen space and adds on-hover previews.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "WikiTweaks",
  "description": "A restyling of Wikipedia that saves screen space and adds on-hover previews.",
  "version": "1.7.1",
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "*://*.wikipedia.org/*",
    "storage"
  ],
  "browser_action": {
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    "jquery.min.js"
  ],
  "content_scripts": [
    {
      "js": [
        "jquery.min.js",
        "WikiTweaks.js"
      ],
      "matches": [
        "*://*.wikipedia.org/*"
      ]
    }
  ],
  "manifest_version": 2
}