ezUP

Navigate UP through the levels of the current site via button or keyboard (ctrl+alt+u).

¿Qué es ezUP?

ezUP es una extensión de Chrome desarrollada por ezanker, y su función principal es "Navigate UP through the levels of the current site via button or keyboard (ctrl+alt+u).".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión ezUP

Descarga archivos de extensión ezUP 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

                        ezUP adds an up arrow button to the omnibox (address bar).  When you press the button a list of urls appears that lets you navigate up through the site hierarchy from the current url.

Click the links to navigate to the urls within the tab or click the new tab/new window icons to open the urls in a new tab or new window.

Aditionally, from within a page, press the keyboard shortcut: ctrl+alt+u to go up one level immediately.  The keyboard shortcut also works within frames on the page, so it will work within my ezLinkPreview extension popups:  https://chrome.google.com/webstore/detail/nnkcfbiefgdaceeplickkkmifpicbpcc                    

Información Básica de la Extensión

Nombre ezUP ezUP
ID hnomiiicdikiogeolpgmpdmcilkgjdco
URL Oficial https://chromewebstore.google.com/detail/ezup/hnomiiicdikiogeolpgmpdmcilkgjdco
Descripción Navigate UP through the levels of the current site via button or keyboard (ctrl+alt+u).
Tamaño del Archivo 51.44 KB
Cantidad de Instalaciones 207
Versión Actual 1.5
Última Actualización 2012-07-10
Fecha de Publicación 2012-07-10
Calificación 4.75/5 Total de 4 Calificaciones
Desarrollador ezanker
Tipo de Pago free
Sitio Web de la Extensión http://www.simpledifference.com/ezanker/ezup.aspx
Idiomas Soportados en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "page": "background.html"
    },
    "name": "ezUP",
    "version": "1.5",
    "manifest_version": 2,
    "description": "Navigate UP through the levels of the current site via button or keyboard (ctrl+alt+u).",
    "icons": {
        "48": "ez48.png",
        "128": "ez128.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "page_action": {
        "default_icon": "ez19.png",
        "default_popup": "ezup.html",
        "default_title": "Move up through the levels of this site"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-1.4.min.js",
                "jquery.hotkeys-0.7.9.min.js",
                "ezOverlay.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ]
}