Basic Gestures

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

O que é Basic Gestures?

Basic Gestures é uma extensão do Chrome desenvolvida por BPS, e sua principal característica é "Basic mouse gestures for back/forward, new/close tab and scroll to top/bottom.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Basic Gestures

Baixe arquivos de extensão Basic Gestures no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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"                    

Informações Básicas da Extensão

Nome Basic Gestures Basic Gestures
ID fjiafbapfbgehmngjallajbeljllmkfj
URL Oficial https://chromewebstore.google.com/detail/basic-gestures/fjiafbapfbgehmngjallajbeljllmkfj
Descrição Basic mouse gestures for back/forward, new/close tab and scroll to top/bottom.
Tamanho do Arquivo 13.73 KB
Contagem de Instalações 1,146
Versão Atual 1.4
Última Atualização 2022-08-19
Data de Publicação 2016-11-08
Classificação 4.44/5 Total de 16 Avaliações
Desenvolvedor BPS
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}