Quick Wikipedia Lookup

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

Wat is Quick Wikipedia Lookup?

Quick Wikipedia Lookup is een Chrome-extensie ontwikkeld door DeepankarArya, en de belangrijkste functie is "Highlight word and get a quick pop up of Wikipedia article on the same page".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Quick Wikipedia Lookup

Download Quick Wikipedia Lookup-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

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

Basisinformatie over de Extensie

Naam Quick Wikipedia Lookup Quick Wikipedia Lookup
ID inijphnndnbffnopedcgoohmfbpiofbd
Officiële URL https://chrome.google.com/webstore/detail/quick-wikipedia-lookup/inijphnndnbffnopedcgoohmfbpiofbd
Beschrijving Highlight word and get a quick pop up of Wikipedia article on the same page
Bestandsgrootte 109 KB
Aantal Installaties 79
Huidige Versie 1
Laatst Bijgewerkt 2015-12-28
Publicatiedatum 2015-12-28
Beoordeling 2.50/5 Totaal 2 Beoordelingen
Ontwikkelaar DeepankarArya
Betalingswijze free
Ondersteunde Talen 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
}