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.

Wat is Wikipedia Highlight Lookup Plugin?

Wikipedia Highlight Lookup Plugin is een Chrome-extensie ontwikkeld door Tim Hansen, en de belangrijkste functie is "Look up highlighted text on wikipedia. Just highlight the word or phrase you want to look up and press Ctrl+I.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Wikipedia Highlight Lookup Plugin

Download Wikipedia Highlight Lookup Plugin-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Wikipedia Highlight Lookup Plugin Wikipedia Highlight Lookup Plugin
ID lccilnojalgdoafhhjhiabfcmpahahec
Officiële URL https://chromewebstore.google.com/detail/wikipedia-highlight-looku/lccilnojalgdoafhhjhiabfcmpahahec
Beschrijving Look up highlighted text on wikipedia. Just highlight the word or phrase you want to look up and press Ctrl+I.
Bestandsgrootte 286 KB
Aantal Installaties 58
Huidige Versie 0.0.3
Laatst Bijgewerkt 2017-01-17
Publicatiedatum 2017-01-16
Ontwikkelaar Tim Hansen
Betalingswijze free
Ondersteunde Talen 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\/*"
    ]
}