Basic Gestures

Basic mouse gestures for back/forward, new/close tab and scroll to top/bottom.

Basic Gestures là gì?

Basic Gestures là một tiện ích mở rộng Chrome được phát triển bởi BPS, và tính năng chính của nó là "Basic mouse gestures for back/forward, new/close tab and scroll to top/bottom.".

Ả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 Basic Gestures

Tải xuống các tệp mở rộng Basic Gestures 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

                        This simple extension adds basic mouse gestures for back/forward, new/close tab and scroll to top/bottom.

Hold down right mouse button, move mouse and then release button to execute one of the following commands.

Left         => Back
Right       => Forward
Up           => Scroll to top or Open new tab (can be changed in the preferences)
Down      => Scroll to bottom
Down + Right => Close current tab
Right + Down => Close current tab   

Linux and Mac users: Press right mouse button twice to open context menu.

New in version 1.4:
-------------------------------
Migration to Manifest V3

New in version 1.3:
-------------------------------
New gesture: Up => Scroll to top
New gesture: Down => Scroll to bottom
New option: Up = "Open new tab" instead of "Scroll to top"                    

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

Tên Basic Gestures Basic Gestures
ID fjiafbapfbgehmngjallajbeljllmkfj
URL Chính Thức https://chromewebstore.google.com/detail/basic-gestures/fjiafbapfbgehmngjallajbeljllmkfj
Mô tả Basic mouse gestures for back/forward, new/close tab and scroll to top/bottom.
Kích Thước Tệp 13.73 KB
Số Lần Cài Đặt 1,146
Phiên Bản Hiện Tại 1.4
Cập Nhật Lần Cuối 2022-08-19
Ngày Phát Hành 2016-11-08
Đánh Giá 4.44/5 Tổng số 16 Đánh Giá
Nhà Phát Triển BPS
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Basic Gestures",
    "version": "1.4",
    "description": "Basic mouse gestures for back\/forward, new\/close tab and scroll to top\/bottom.",
    "icons": {
        "16": "icons\/icon_16.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "gestures.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "options\/options.html"
    },
    "action": {
        "default_icon": "icons\/icon_19.png"
    }
}