Scroll Back

Change the behaviour of Shift-Wheel to go forward and back in the history, like Firefox.

Co je Scroll Back?

Scroll Back je rozšíření Chrome vyvinuté https://erambler.co.uk, a jeho hlavní funkcí je „Change the behaviour of Shift-Wheel to go forward and back in the history, like Firefox.“.

Stáhnout soubor CRX rozšíření Scroll Back

Stáhněte si soubory rozšíření Scroll Back ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Firefox allows you to navigate in the history by holding down the Shift key and using the mouse wheel.  This extension enables the same behaviour in Chrome.  There is no configuration: just disable the extension to go back to the default behaviour.

License: https://github.com/jezcope/chrome-scroll-back/blob/master/LICENSE.txt

Please report bugs at https://github.com/jezcope/chrome-scroll-back/issues.

Icon taken from FontAwesome (http://fortawesome.github.io/Font-Awesome/).                    

Základní Informace o Rozšíření

Název Scroll Back Scroll Back
ID bhhdgkdmcbgoecgmdgbkabdbjcihafgc
Oficiální URL https://chromewebstore.google.com/detail/scroll-back/bhhdgkdmcbgoecgmdgbkabdbjcihafgc
Popis Change the behaviour of Shift-Wheel to go forward and back in the history, like Firefox.
Velikost souboru 5.87 KB
Počet instalací 114
Aktuální Verze 0.1.1
Poslední Aktualizace 2017-01-06
Datum Vydání 2017-01-06
Hodnocení 5.00/5 Celkem 4 Hodnocení
Vývojář https://erambler.co.uk
Typ Platby free
Podporované Jazyky en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Scroll Back",
    "description": "Change the behaviour of Shift-Wheel to go forward and back in the history, like Firefox.",
    "icons": {
        "128": "icon.png"
    },
    "version": "0.1.1",
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "js\/scrollback.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ]
}