Wiki on Speed

Wiki on Speed

Hover the mouse over any inter-wiki link in Wikipedia and see an excerpt on a overlay hovering box. No need to open in new tab!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "1.3",
  "name": "Wiki on Speed",
  "short_name": "WikiOnSpeed",
  "description": "Hover the mouse over any inter-wiki link in Wikipedia and see an excerpt on a overlay hovering box. No need to open in new tab!",
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "*://*.wikipedia.org/wiki/*"
      ],
      "js": [
        "WikiHover.js",
        "wosp.js"
      ],
      "css": [
        "wikistyle.css"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "http://*.wikipedia.org/",
    "storage"
  ],
  "web_accessible_resources": [
    "close.png",
    "newTab.png",
    "pushpin.png",
    "pushedpin.png",
    "title.png"
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}