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
官方網址 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
        }
    ]
}