Quick Wikipedia Lookup

Highlight word and get a quick pop up of Wikipedia article on the same page

What is Quick Wikipedia Lookup?

Quick Wikipedia Lookup is a Chrome extension developed by DeepankarArya, and its main feature is "Highlight word and get a quick pop up of Wikipedia article on the same page".

Extension Screenshots

screenshot

Download Quick Wikipedia Lookup Extension CRX File

Download Quick Wikipedia Lookup extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        --Quick Wikipedia Lookup--

Get quick lookup of Wikipedia for any word or phrase on any webpage without opening Wikipedia.

--Usage--

*Highlight any word or phrase using left mouse button
*Right click on the highlighted word(s)
*Click on 'Quick Wikipedia Lookup' and get a popup on the same page

--Features--
*Extremely Light Weight
*No need to load Wikipedia Page
*Fast lookup of basic info
*Works on any webpage
*Links to main article for details
*Perform Custom Search from pop up UI                    

Extension Basic Information

Name Quick Wikipedia Lookup Quick Wikipedia Lookup
ID inijphnndnbffnopedcgoohmfbpiofbd
Official URL https://chrome.google.com/webstore/detail/quick-wikipedia-lookup/inijphnndnbffnopedcgoohmfbpiofbd
Description Highlight word and get a quick pop up of Wikipedia article on the same page
File Size 109 KB
Installation Count 79
Current Version 1
Last Updated 2015-12-28
Publish Date 2015-12-28
Rating 2.50/5 Total 2 Ratings
Developer DeepankarArya
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Quick Wikipedia Lookup",
    "short_name": "Quick Wiki",
    "description": "Highlight word and get a quick pop up of Wikipedia article on the same page",
    "version": "1",
    "permissions": [
        "contextMenus",
        "activeTab",
        "tabs"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "jquery-1.11.3.min.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "popUpDisplay.css"
            ],
            "js": [
                "jquery-1.11.3.min.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon48.png",
        "default_popup": "popUp.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "manifest_version": 2
}