SwipeHistory

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

什么是SwipeHistory?

SwipeHistory是由Rasmus Johanson开发的Chrome扩展程序,该扩展的主要功能是“Emulate macbook/chromebook (two finger) touchpad browser history navigation by abusing vertical scroll.”。

扩展截图

screenshot

下载SwipeHistory扩展crx文件

下载SwipeHistory扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 SwipeHistory SwipeHistory
ID fhmlogipcjkneapddafhpfldafgbekfo
官方URL https://chromewebstore.google.com/detail/swipehistory/fhmlogipcjkneapddafhpfldafgbekfo
简介 Emulate macbook/chromebook (two finger) touchpad browser history navigation by abusing vertical scroll.
文件大小 117 KB
安装次数 256
当前版本 1.1
更新时间 2020-11-18
上架时间 2020-03-01
评分 4.80/5 共5次评分
开发者 Rasmus Johanson
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/johanson/SwipeHistory
帮助页面URL https://github.com/johanson/SwipeHistory
支持的语言 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
        }
    ]
}