Quick Wikipedia Lookup

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

Was ist Quick Wikipedia Lookup?

Quick Wikipedia Lookup ist eine Chrome-Erweiterung, die von DeepankarArya entwickelt wurde, und ihr Hauptmerkmal ist "Highlight word and get a quick pop up of Wikipedia article on the same page".

Erweiterungsscreenshots

screenshot

Quick Wikipedia Lookup-Erweiterungs-CRX-Datei herunterladen

Laden Sie Quick Wikipedia Lookup-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

                        --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                    

Grundlegende Informationen zur Erweiterung

Name Quick Wikipedia Lookup Quick Wikipedia Lookup
ID inijphnndnbffnopedcgoohmfbpiofbd
Offizielle URL https://chrome.google.com/webstore/detail/quick-wikipedia-lookup/inijphnndnbffnopedcgoohmfbpiofbd
Beschreibung Highlight word and get a quick pop up of Wikipedia article on the same page
Dateigröße 109 KB
Installationsanzahl 79
Aktuelle Version 1
Letztes Update 2015-12-28
Veröffentlichungsdatum 2015-12-28
Bewertung 2.50/5 Insgesamt 2 Bewertungen
Entwickler DeepankarArya
Zahlungsart free
Unterstützte Sprachen 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
}