JumpBack Button

Navigate back in browser history, skipping over pages with a URL that match the current page URL up to its final directory.

Cos'è JumpBack Button?

JumpBack Button è un'estensione di Chrome sviluppata da Brian Slakter and Andrew Packer, e la sua funzione principale è "Navigate back in browser history, skipping over pages with a URL that match the current page URL up to its final directory.".

Scarica il file CRX dell'estensione JumpBack Button

Scarica i file di estensione JumpBack Button 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

                        --JumpBack Button--
August 21, 2014
Extension Created by Brian Slakter and Andrew Packer

This extension allows a user to navigate back in their browser history, skipping over pages with a URL that match the current page URL up to its final directory. As an example, the JumpBack Button can be used to return to a Yelp search after navigating through photos of a restaurant.  Also useful for websites that contain articles in slideshow format.                    

Informazioni di Base sull'Estensione

Nome JumpBack Button JumpBack Button
ID diikgjokohdfgpcbgpnebjknpfoadfda
URL Ufficiale https://chrome.google.com/webstore/detail/jumpback-button/diikgjokohdfgpcbgpnebjknpfoadfda
Descrizione Navigate back in browser history, skipping over pages with a URL that match the current page URL up to its final directory.
Dimensione del File 11.05 KB
Conteggio Installazioni 10
Versione Corrente 1.1
Ultimo Aggiornamento 2014-08-22
Data di Pubblicazione 2014-08-22
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Brian Slakter and Andrew Packer
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/bslakter/JumpBackButton/
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "JumpBack Button",
    "short_name": "JumpBack",
    "description": "Navigate back in browser history, skipping over pages with a URL that match the current page URL up to its final directory.",
    "version": "1.1",
    "permissions": [
        "history",
        "storage",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png"
    }
}