Wikipedia Inline References

Wikipedia Inline References

Information about a source at a glance. Inserts Wikipedia reference information inline, next to where it was mentioned.

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 Inline References",
  "version": "0.1",
  "author": "Wikipedia Inline References",
  "description": "Information about a source at a glance. Inserts Wikipedia reference information inline, next to where it was mentioned.",
  "background": {
    "page": "background.html"
  },
  "icons": {
    "16": "logo16x16.png",
    "48": "logo48x48.png",
    "128": "logo128x128.png"
  },
  "web_accessible_resources": [
    "background.html"
  ],
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "*://*.wikipedia.org/*"
      ],
      "css": [],
      "js": [
        "script.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "http://*/",
    "storage"
  ]
}