Wikipedia Highlight Lookup Plugin

Look up highlighted text on wikipedia. Just highlight the word or phrase you want to look up and press Ctrl+I.

What is Wikipedia Highlight Lookup Plugin?

Wikipedia Highlight Lookup Plugin is a Chrome extension developed by Tim Hansen, and its main feature is "Look up highlighted text on wikipedia. Just highlight the word or phrase you want to look up and press Ctrl+I.".

Extension Screenshots

screenshot
screenshot

Download Wikipedia Highlight Lookup Plugin Extension CRX File

Download Wikipedia Highlight Lookup Plugin 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

                        A simple open-source chrome extension that allows you to look up terms on wikipedia by highlighting text on any page and then hitting Ctrl+I (Command+I on apple).

Icons made by SimpleIcon from www.flaticon.com is licensed by CC 3.0 BY.                    

Extension Basic Information

Name Wikipedia Highlight Lookup Plugin Wikipedia Highlight Lookup Plugin
ID lccilnojalgdoafhhjhiabfcmpahahec
Official URL https://chromewebstore.google.com/detail/wikipedia-highlight-looku/lccilnojalgdoafhhjhiabfcmpahahec
Description Look up highlighted text on wikipedia. Just highlight the word or phrase you want to look up and press Ctrl+I.
File Size 286 KB
Installation Count 58
Current Version 0.0.3
Last Updated 2017-01-17
Publish Date 2017-01-16
Developer Tim Hansen
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wikipedia Highlight Lookup Plugin",
    "version": "0.0.3",
    "manifest_version": 2,
    "description": "Look up highlighted text on wikipedia.  Just highlight the word or phrase you want to look up and press Ctrl+I.",
    "icons": {
        "16": "icon\/16.png",
        "48": "icon\/48.png",
        "128": "icon\/128.png"
    },
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/bg\/content.js"
            ]
        }
    ],
    "commands": {
        "wiki-lookup": {
            "suggested_key": {
                "default": "Ctrl+I",
                "mac": "Command+I"
            },
            "description": "Toggle wikipedia lookup"
        }
    },
    "permissions": [
        "tabs",
        "activeTab",
        "notifications",
        "http:\/\/*\/*",
        "https:\/\/upload.wikimedia.org\/*"
    ]
}