EasyWiki

Simplifying Wikipedia research. No more multiple tabs.

¿Qué es EasyWiki?

EasyWiki es una extensión de Chrome desarrollada por DoSelect, y su función principal es "Simplifying Wikipedia research. No more multiple tabs.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión EasyWiki

Descarga archivos de extensión EasyWiki en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        EasyWiki is a Chrome extension that simplifies your journey down the Wikipedia rabbit-hole! No more 57 tabs! We love popovers!

## How does it work?

* Install the extension.

* Turn EasyWiki `ON` by clicking the EasyWiki button on the toolbar.

* Now, whenever you hover on a [Wikipedia](http://en.wikipedia.org) link on any website, a popover will show up with the description of that article, so that you do not have to open a new tab every time.

## Will it create a mess of popovers?

Most certainly, it wouldn't. It waits for at least 700 milliseconds before bringing up the popover.

- - -

Crafted with love by @sanketsaurav and @avckp.                    

Información Básica de la Extensión

Nombre EasyWiki EasyWiki
ID faihnkmjkajkjcbaginjgdmamhfmhado
URL Oficial https://chrome.google.com/webstore/detail/easywiki/faihnkmjkajkjcbaginjgdmamhfmhado
Descripción Simplifying Wikipedia research. No more multiple tabs.
Tamaño del Archivo 50.31 KB
Cantidad de Instalaciones 68
Versión Actual 0.2
Última Actualización 2015-06-27
Fecha de Publicación 2015-06-27
Calificación 4.83/5 Total de 12 Calificaciones
Desarrollador DoSelect
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "EasyWiki",
    "version": "0.2",
    "manifest_version": 2,
    "default_locale": "en",
    "description": "Simplifying Wikipedia research. No more multiple tabs.",
    "homepage_url": "https:\/\/github.com\/sanketsaurav\/easywiki",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "icons\/icon48.png",
            "38": "icons\/icon48.png"
        },
        "default_title": "Toggle EasyWiki"
    },
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "*:\/\/*.wikipedia.org\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "src\/inject\/inject.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*.wikipedia.org\/*"
            ],
            "js": [
                "js\/jquery\/jquery.min.js",
                "js\/tooltip.js",
                "js\/popover.js",
                "src\/inject\/inject.js"
            ]
        }
    ]
}