Better Back Button

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

Qu'est-ce que Better Back Button ?

Better Back Button est une extension Chrome développée par shawn.hoover, et sa fonction principale est "A history stack that doesn't discard the forward entries when you navigate.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Better Back Button

Téléchargez les fichiers d'extension Better Back Button au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Better Back Button Better Back Button
ID mnjmflfpbdlhinbldepdfegnhldplgnd
URL Officiel https://chromewebstore.google.com/detail/better-back-button/mnjmflfpbdlhinbldepdfegnhldplgnd
Description A history stack that doesn't discard the forward entries when you navigate.
Taille du Fichier 46.88 KB
Nombre d'Installations 270
Version Actuelle 0.4
Dernière Mise à Jour 2015-08-01
Date de Publication 2015-08-01
Évaluation 4.83/5 Total 6 Évaluations
Développeur shawn.hoover
Type de Paiement free
Site Web de l'Extension https://bitbucket.org/shoover/better-back-button
Langues Prises en Charge 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"
}