Mousetures

Mouse and rocker gestures for tab switching, closing, and reloading

Mousetures là gì?

Mousetures là một tiện ích mở rộng Chrome được phát triển bởi Dan Wendorf, và tính năng chính của nó là "Mouse and rocker gestures for tab switching, closing, and reloading".

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

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

                        Close, refresh, and switch tabs with simple mouse gestures.

To close, hold the right mouse button, drag down, and release.
To refresh, hold the right mouse button, drag down then up, and release.

Switch tabs using mouse rocker gestures. To switch to the tab to the right of your current tab, hold the left mouse button and right-click. To switch to the tab to the left of your current tab, hold the right mouse button and left-click. To cycle through multiple tabs, keep holding the mouse button, and click repeatedly.                    

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

Tên Mousetures Mousetures
ID fadopffbmckhlapnajkgbgldgpcebfid
URL Chính Thức https://chrome.google.com/webstore/detail/mousetures/fadopffbmckhlapnajkgbgldgpcebfid
Mô tả Mouse and rocker gestures for tab switching, closing, and reloading
Kích Thước Tệp 9.03 KB
Số Lần Cài Đặt 36
Phiên Bản Hiện Tại 0.7.0
Cập Nhật Lần Cuối 2015-05-24
Ngày Phát Hành 2015-05-24
Đánh Giá 4.17/5 Tổng số 6 Đánh Giá
Nhà Phát Triển Dan Wendorf
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/wendorf/mousetures
URL Trang Trợ Giúp https://github.com/wendorf/mousetures/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Mousetures",
    "description": "Mouse and rocker gestures for tab switching, closing, and reloading",
    "version": "0.7.0",
    "permissions": [
        "storage",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "actions.js",
            "background.js",
            "upgradeContentScripts.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "all_frames": true,
            "js": [
                "mouseEventGroup.js",
                "point.js",
                "moveGestures.js",
                "main.js",
                "upgradeContentScriptHelper.js",
                "gestureHandler.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}