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
Eメール [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
        }
    ]
}