SwipeHistory

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

SwipeHistory là gì?

SwipeHistory là một tiện ích mở rộng Chrome được phát triển bởi Rasmus Johanson, và tính năng chính của nó là "Emulate macbook/chromebook (two finger) touchpad browser history navigation by abusing vertical scroll.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng SwipeHistory

Tải xuống các tệp mở rộng SwipeHistory dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên SwipeHistory SwipeHistory
ID fhmlogipcjkneapddafhpfldafgbekfo
URL Chính Thức https://chromewebstore.google.com/detail/swipehistory/fhmlogipcjkneapddafhpfldafgbekfo
Mô tả Emulate macbook/chromebook (two finger) touchpad browser history navigation by abusing vertical scroll.
Kích Thước Tệp 117 KB
Số Lần Cài Đặt 256
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2020-11-18
Ngày Phát Hành 2020-03-01
Đánh Giá 4.80/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Rasmus Johanson
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/johanson/SwipeHistory
URL Trang Trợ Giúp https://github.com/johanson/SwipeHistory
Ngôn Ngữ Được Hỗ Trợ 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
        }
    ]
}