Basic Gestures

Basic mouse gestures for back/forward, new/close tab and scroll to top/bottom.

Qu'est-ce que Basic Gestures ?

Basic Gestures est une extension Chrome développée par BPS, et sa fonction principale est "Basic mouse gestures for back/forward, new/close tab and scroll to top/bottom.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Basic Gestures

Téléchargez les fichiers d'extension Basic Gestures 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

                        This simple extension adds basic mouse gestures for back/forward, new/close tab and scroll to top/bottom.

Hold down right mouse button, move mouse and then release button to execute one of the following commands.

Left         => Back
Right       => Forward
Up           => Scroll to top or Open new tab (can be changed in the preferences)
Down      => Scroll to bottom
Down + Right => Close current tab
Right + Down => Close current tab   

Linux and Mac users: Press right mouse button twice to open context menu.

New in version 1.4:
-------------------------------
Migration to Manifest V3

New in version 1.3:
-------------------------------
New gesture: Up => Scroll to top
New gesture: Down => Scroll to bottom
New option: Up = "Open new tab" instead of "Scroll to top"                    

Informations de Base sur l'Extension

Nom Basic Gestures Basic Gestures
ID fjiafbapfbgehmngjallajbeljllmkfj
URL Officiel https://chromewebstore.google.com/detail/basic-gestures/fjiafbapfbgehmngjallajbeljllmkfj
Description Basic mouse gestures for back/forward, new/close tab and scroll to top/bottom.
Taille du Fichier 13.73 KB
Nombre d'Installations 1,146
Version Actuelle 1.4
Dernière Mise à Jour 2022-08-19
Date de Publication 2016-11-08
Évaluation 4.44/5 Total 16 Évaluations
Développeur BPS
Email [email protected]
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Basic Gestures",
    "version": "1.4",
    "description": "Basic mouse gestures for back\/forward, new\/close tab and scroll to top\/bottom.",
    "icons": {
        "16": "icons\/icon_16.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "gestures.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "options\/options.html"
    },
    "action": {
        "default_icon": "icons\/icon_19.png"
    }
}