SwipeHistory

Emulate macbook/chromebook (two finger) touchpad browser history navigation by abusing vertical scroll.

Wat is SwipeHistory?

SwipeHistory is een Chrome-extensie ontwikkeld door Rasmus Johanson, en de belangrijkste functie is "Emulate macbook/chromebook (two finger) touchpad browser history navigation by abusing vertical scroll.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie SwipeHistory

Download SwipeHistory-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Emulate macbook/chromebook (two finger) touchpad browser history navigation by abusing vertical scroll. You need to enable vertical scroll from your touchpad settings, otherwise the extension won't work. The sensitivity depends on myriad of settings, often operating system and touchpad drivers.                    

Basisinformatie over de Extensie

Naam SwipeHistory SwipeHistory
ID fhmlogipcjkneapddafhpfldafgbekfo
Officiële URL https://chromewebstore.google.com/detail/swipehistory/fhmlogipcjkneapddafhpfldafgbekfo
Beschrijving Emulate macbook/chromebook (two finger) touchpad browser history navigation by abusing vertical scroll.
Bestandsgrootte 117 KB
Aantal Installaties 256
Huidige Versie 1.1
Laatst Bijgewerkt 2020-11-18
Publicatiedatum 2020-03-01
Beoordeling 4.80/5 Totaal 5 Beoordelingen
Ontwikkelaar Rasmus Johanson
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/johanson/SwipeHistory
Help Pagina-URL https://github.com/johanson/SwipeHistory
Ondersteunde Talen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SwipeHistory",
    "version": "1.1",
    "manifest_version": 2,
    "description": "Emulate macbook\/chromebook (two finger) touchpad browser history navigation by abusing vertical scroll.",
    "author": "Rasmus Johanson",
    "homepage_url": "https:\/\/github.com\/johanson\/",
    "minimum_chrome_version": "75",
    "options_ui": {
        "page": "settings\/settings.html",
        "chrome_style": true
    },
    "icons": {
        "128": "assets\/icon_128.png"
    },
    "browser_action": {
        "default_popup": "settings\/settings.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "inject.js"
            ],
            "match_about_blank": true
        }
    ]
}