SwipeHistory

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

Qu'est-ce que SwipeHistory ?

SwipeHistory est une extension Chrome développée par Rasmus Johanson, et sa fonction principale est "Emulate macbook/chromebook (two finger) touchpad browser history navigation by abusing vertical scroll.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension SwipeHistory

Téléchargez les fichiers d'extension SwipeHistory au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom SwipeHistory SwipeHistory
ID fhmlogipcjkneapddafhpfldafgbekfo
URL Officiel https://chromewebstore.google.com/detail/swipehistory/fhmlogipcjkneapddafhpfldafgbekfo
Description Emulate macbook/chromebook (two finger) touchpad browser history navigation by abusing vertical scroll.
Taille du Fichier 117 KB
Nombre d'Installations 256
Version Actuelle 1.1
Dernière Mise à Jour 2020-11-18
Date de Publication 2020-03-01
Évaluation 4.80/5 Total 5 Évaluations
Développeur Rasmus Johanson
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/johanson/SwipeHistory
URL de la Page d'Aide https://github.com/johanson/SwipeHistory
Langues Prises en Charge 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
        }
    ]
}