Scroll Back

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

Co to jest Scroll Back?

Scroll Back to rozszerzenie Chrome opracowane przez https://erambler.co.uk, a jego główną funkcją jest „Change the behaviour of Shift-Wheel to go forward and back in the history, like Firefox.”.

Pobierz plik CRX rozszerzenia Scroll Back

Pobierz pliki rozszerzeń Scroll Back w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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/).                    

Podstawowe informacje o rozszerzeniu

Nazwa Scroll Back Scroll Back
ID bhhdgkdmcbgoecgmdgbkabdbjcihafgc
Oficjalny URL https://chromewebstore.google.com/detail/scroll-back/bhhdgkdmcbgoecgmdgbkabdbjcihafgc
Opis Change the behaviour of Shift-Wheel to go forward and back in the history, like Firefox.
Rozmiar pliku 5.87 KB
Liczba instalacji 114
Aktualna Wersja 0.1.1
Ostatnia Aktualizacja 2017-01-06
Data Publikacji 2017-01-06
Ocena 5.00/5 Łącznie 4 Oceny
Deweloper https://erambler.co.uk
Typ Płatności free
Obsługiwane Języki 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"
        }
    ]
}