Better Back Button

A history stack that doesn't discard the forward entries when you navigate.

Cos'è Better Back Button?

Better Back Button è un'estensione di Chrome sviluppata da shawn.hoover, e la sua funzione principale è "A history stack that doesn't discard the forward entries when you navigate.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Better Back Button

Scarica i file di estensione Better Back 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

                        Have you ever noticed how browser history disappears when you're clicking back and forward a lot and then click on a link on a page? This extension helps by making sure your most recently visited sites stay available in one handy dropdown. You can skip opening a new tab for everything under the sun, knowing you won't lose track of where you've been.

See the web site for keyboard usage.

Derived from Dropdown List of Most Visited Links.                    

Informazioni di Base sull'Estensione

Nome Better Back Button Better Back Button
ID mnjmflfpbdlhinbldepdfegnhldplgnd
URL Ufficiale https://chromewebstore.google.com/detail/better-back-button/mnjmflfpbdlhinbldepdfegnhldplgnd
Descrizione A history stack that doesn't discard the forward entries when you navigate.
Dimensione del File 46.88 KB
Conteggio Installazioni 270
Versione Corrente 0.4
Ultimo Aggiornamento 2015-08-01
Data di Pubblicazione 2015-08-01
Valutazione 4.83/5 Totale 6 Valutazioni
Sviluppatore shawn.hoover
Tipo di Pagamento free
Sito Web dell'Estensione https://bitbucket.org/shoover/better-back-button
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Better Back Button",
    "version": "0.4",
    "author": "Shawn Hoover",
    "manifest_version": 2,
    "description": "A history stack that doesn't discard the forward entries when you navigate.",
    "icons": {
        "19": "icon19.png",
        "38": "icon38.png",
        "128": "icon128.png"
    },
    "permissions": [
        "tabs",
        "chrome:\/\/favicon\/"
    ],
    "browser_action": {
        "default_icon": "icon19.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "options.html"
}