SwipeHistory

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

Co to jest SwipeHistory?

SwipeHistory to rozszerzenie Chrome opracowane przez Rasmus Johanson, a jego główną funkcją jest „Emulate macbook/chromebook (two finger) touchpad browser history navigation by abusing vertical scroll.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia SwipeHistory

Pobierz pliki rozszerzeń SwipeHistory 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

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa SwipeHistory SwipeHistory
ID fhmlogipcjkneapddafhpfldafgbekfo
Oficjalny URL https://chromewebstore.google.com/detail/swipehistory/fhmlogipcjkneapddafhpfldafgbekfo
Opis Emulate macbook/chromebook (two finger) touchpad browser history navigation by abusing vertical scroll.
Rozmiar pliku 117 KB
Liczba instalacji 256
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2020-11-18
Data Publikacji 2020-03-01
Ocena 4.80/5 Łącznie 5 Oceny
Deweloper Rasmus Johanson
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/johanson/SwipeHistory
Adres URL Strony Pomocy https://github.com/johanson/SwipeHistory
Obsługiwane Języki 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
        }
    ]
}