Scroll Back

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

Was ist Scroll Back?

Scroll Back ist eine Chrome-Erweiterung, die von https://erambler.co.uk entwickelt wurde, und ihr Hauptmerkmal ist "Change the behaviour of Shift-Wheel to go forward and back in the history, like Firefox.".

Scroll Back-Erweiterungs-CRX-Datei herunterladen

Laden Sie Scroll Back-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Scroll Back Scroll Back
ID bhhdgkdmcbgoecgmdgbkabdbjcihafgc
Offizielle URL https://chromewebstore.google.com/detail/scroll-back/bhhdgkdmcbgoecgmdgbkabdbjcihafgc
Beschreibung Change the behaviour of Shift-Wheel to go forward and back in the history, like Firefox.
Dateigröße 5.87 KB
Installationsanzahl 114
Aktuelle Version 0.1.1
Letztes Update 2017-01-06
Veröffentlichungsdatum 2017-01-06
Bewertung 5.00/5 Insgesamt 4 Bewertungen
Entwickler https://erambler.co.uk
Zahlungsart free
Unterstützte Sprachen 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"
        }
    ]
}