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.

Was ist Wikipedia Highlight Lookup Plugin?

Wikipedia Highlight Lookup Plugin ist eine Chrome-Erweiterung, die von Tim Hansen entwickelt wurde, und ihr Hauptmerkmal ist "Look up highlighted text on wikipedia. Just highlight the word or phrase you want to look up and press Ctrl+I.".

Erweiterungsscreenshots

screenshot
screenshot

Wikipedia Highlight Lookup Plugin-Erweiterungs-CRX-Datei herunterladen

Laden Sie Wikipedia Highlight Lookup Plugin-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Wikipedia Highlight Lookup Plugin Wikipedia Highlight Lookup Plugin
ID lccilnojalgdoafhhjhiabfcmpahahec
Offizielle URL https://chromewebstore.google.com/detail/wikipedia-highlight-looku/lccilnojalgdoafhhjhiabfcmpahahec
Beschreibung Look up highlighted text on wikipedia. Just highlight the word or phrase you want to look up and press Ctrl+I.
Dateigröße 286 KB
Installationsanzahl 58
Aktuelle Version 0.0.3
Letztes Update 2017-01-17
Veröffentlichungsdatum 2017-01-16
Entwickler Tim Hansen
Zahlungsart free
Unterstützte Sprachen 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\/*"
    ]
}