Wikipedia Link Expander

Wikipedia Link Expander

Changes the title text for wikipedia links to be the first paragraph of that page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Wikipedia Link Expander",
  "description": "Changes the title text for wikipedia links to be the first paragraph of that page",
  "version": "1.0.1",
  "icons": {
    "16": "images/wikipediaicon16.png",
    "48": "images/wikipediaicon48.png",
    "128": "images/wikipediaicon128.png"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "contentSettings",
    "http://*.wikipedia.org/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*.wikipedia.org/*"
      ],
      "js": [
        "jquery-1.11.2.min.js",
        "wikipediaHover.js"
      ]
    }
  ]
}