SwipeHistory

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

Cos'è SwipeHistory?

SwipeHistory è un'estensione di Chrome sviluppata da Rasmus Johanson, e la sua funzione principale è "Emulate macbook/chromebook (two finger) touchpad browser history navigation by abusing vertical scroll.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione SwipeHistory

Scarica i file di estensione SwipeHistory in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome SwipeHistory SwipeHistory
ID fhmlogipcjkneapddafhpfldafgbekfo
URL Ufficiale https://chromewebstore.google.com/detail/swipehistory/fhmlogipcjkneapddafhpfldafgbekfo
Descrizione Emulate macbook/chromebook (two finger) touchpad browser history navigation by abusing vertical scroll.
Dimensione del File 117 KB
Conteggio Installazioni 256
Versione Corrente 1.1
Ultimo Aggiornamento 2020-11-18
Data di Pubblicazione 2020-03-01
Valutazione 4.80/5 Totale 5 Valutazioni
Sviluppatore Rasmus Johanson
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/johanson/SwipeHistory
URL della Pagina di Aiuto https://github.com/johanson/SwipeHistory
Lingue Supportate 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
        }
    ]
}