Easy Wikipedia

Easy Wikipedia

Popup info box on Wikipedia.org articles, Omnibox search with keword 'w', and right-click search a highlighted term.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Easy Wikipedia",
  "version": "0.9",
  "manifest_version": 2,
  "description": "Popup info box on Wikipedia.org articles, Omnibox search with keword 'w', and right-click search a highlighted term.",
  "omnibox": {
    "keyword": "w"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "homepage_url": "http://wikipedia.org/",
  "permissions": [
    "contextMenus"
  ],
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "Easy Wikipedia",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*.wikipedia.org/wiki/*"
      ],
      "exclude_matches": [
        "http://*.wikipedia.org/wiki/Main_Page"
      ],
      "css": [
        "mystyle.css"
      ],
      "js": [
        "jquery-2.0.3.min.js",
        "mycode.js"
      ],
      "run_at": "document_idle"
    }
  ]
}