Quick Wikipedia Lookup

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

Cos'è Quick Wikipedia Lookup?

Quick Wikipedia Lookup è un'estensione di Chrome sviluppata da DeepankarArya, e la sua funzione principale è "Highlight word and get a quick pop up of Wikipedia article on the same page".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Quick Wikipedia Lookup

Scarica i file di estensione Quick Wikipedia Lookup in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Quick Wikipedia Lookup Quick Wikipedia Lookup
ID inijphnndnbffnopedcgoohmfbpiofbd
URL Ufficiale https://chrome.google.com/webstore/detail/quick-wikipedia-lookup/inijphnndnbffnopedcgoohmfbpiofbd
Descrizione Highlight word and get a quick pop up of Wikipedia article on the same page
Dimensione del File 109 KB
Conteggio Installazioni 79
Versione Corrente 1
Ultimo Aggiornamento 2015-12-28
Data di Pubblicazione 2015-12-28
Valutazione 2.50/5 Totale 2 Valutazioni
Sviluppatore DeepankarArya
Tipo di Pagamento free
Lingue Supportate 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
}