Drag to Go Back

Navigate Browser (Back/Forward) by Wheel-Click Dragging

Drag to Go Back là gì?

Drag to Go Back là một tiện ích mở rộng Chrome được phát triển bởi June Shim, và tính năng chính của nó là "Navigate Browser (Back/Forward) by Wheel-Click Dragging".

Ả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 Drag to Go Back

Tải xuống các tệp mở rộng Drag to Go Back 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 extension is for those who use a mouse with only three buttons. (primary, secondary and wheel)

With other input devices such as 5-button mouse or Apple's trackpad and magic mouse, navigating pages (Go back/forward) in the browser is seamless. This extension solves problem for easy navigation with a 3-button mouse.

Just like swiping the trackpad to go back/forward, user can wheel-click then drag horizontally to go back/forward. (Drag to the right - Go Back a Page, Drag to the left - Go Forward a Page)

User has options to change the drag threshold length (in pixels). (e.g. if user wants dragging to be shorter, they can change settings in options page)

The source code for this extension can be found at https://github.com/j-shim/drag-to-go-back.                    

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

Tên Drag to Go Back Drag to Go Back
ID ikcphihdleoaocpmbcdcdajfiioafmae
URL Chính Thức https://chromewebstore.google.com/detail/drag-to-go-back/ikcphihdleoaocpmbcdcdajfiioafmae
Mô tả Navigate Browser (Back/Forward) by Wheel-Click Dragging
Kích Thước Tệp 11.08 KB
Số Lần Cài Đặt 45
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2020-08-23
Ngày Phát Hành 2020-08-22
Nhà Phát Triển June Shim
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/j-shim/drag-to-go-back
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Drag to Go Back",
    "version": "1.0.0",
    "description": "Navigate Browser (Back\/Forward) by Wheel-Click Dragging",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "options_page": "options.html",
    "page_action": {
        "default_icon": {
            "16": "images\/get_started16.png",
            "32": "images\/get_started32.png",
            "48": "images\/get_started48.png",
            "128": "images\/get_started128.png"
        }
    },
    "icons": {
        "16": "images\/get_started16.png",
        "32": "images\/get_started32.png",
        "48": "images\/get_started48.png",
        "128": "images\/get_started128.png"
    }
}