Mousetures

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

Mouseturesคืออะไร?

Mousetures เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Dan Wendorf และคุณลักษณะหลักของมันคือ "Mouse and rocker gestures for tab switching, closing, and reloading"

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Mousetures

ดาวน์โหลดไฟล์ส่วนขยาย Mousetures ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Mousetures Mousetures
ID fadopffbmckhlapnajkgbgldgpcebfid
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/mousetures/fadopffbmckhlapnajkgbgldgpcebfid
คำอธิบาย Mouse and rocker gestures for tab switching, closing, and reloading
ขนาดไฟล์ 9.03 KB
จำนวนการติดตั้ง 36
เวอร์ชันปัจจุบัน 0.7.0
อัปเดตครั้งล่าสุด 2015-05-24
วันที่เผยแพร่ 2015-05-24
คะแนน 4.17/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา Dan Wendorf
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/wendorf/mousetures
URL หน้าช่วยเหลือ https://github.com/wendorf/mousetures/issues
ภาษาที่รองรับ 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
    }
}