SwipeHistory

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

O que é SwipeHistory?

SwipeHistory é uma extensão do Chrome desenvolvida por Rasmus Johanson, e sua principal característica é "Emulate macbook/chromebook (two finger) touchpad browser history navigation by abusing vertical scroll.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão SwipeHistory

Baixe arquivos de extensão SwipeHistory 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

                        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.                    

Informações Básicas da Extensão

Nome SwipeHistory SwipeHistory
ID fhmlogipcjkneapddafhpfldafgbekfo
URL Oficial https://chromewebstore.google.com/detail/swipehistory/fhmlogipcjkneapddafhpfldafgbekfo
Descrição Emulate macbook/chromebook (two finger) touchpad browser history navigation by abusing vertical scroll.
Tamanho do Arquivo 117 KB
Contagem de Instalações 256
Versão Atual 1.1
Última Atualização 2020-11-18
Data de Publicação 2020-03-01
Classificação 4.80/5 Total de 5 Avaliações
Desenvolvedor Rasmus Johanson
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/johanson/SwipeHistory
URL da Página de Ajuda https://github.com/johanson/SwipeHistory
Idiomas Suportados 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
        }
    ]
}