SwipeHistory

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

Co je SwipeHistory?

SwipeHistory je rozšíření Chrome vyvinuté Rasmus Johanson, a jeho hlavní funkcí je „Emulate macbook/chromebook (two finger) touchpad browser history navigation by abusing vertical scroll.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření SwipeHistory

Stáhněte si soubory rozšíření SwipeHistory 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í

                        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.                    

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

Název SwipeHistory SwipeHistory
ID fhmlogipcjkneapddafhpfldafgbekfo
Oficiální URL https://chromewebstore.google.com/detail/swipehistory/fhmlogipcjkneapddafhpfldafgbekfo
Popis Emulate macbook/chromebook (two finger) touchpad browser history navigation by abusing vertical scroll.
Velikost souboru 117 KB
Počet instalací 256
Aktuální Verze 1.1
Poslední Aktualizace 2020-11-18
Datum Vydání 2020-03-01
Hodnocení 4.80/5 Celkem 5 Hodnocení
Vývojář Rasmus Johanson
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/johanson/SwipeHistory
URL Stránky Nápovědy https://github.com/johanson/SwipeHistory
Podporované Jazyky 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
        }
    ]
}