Mouse Gesture and Wheel Action

Mouse gestures, right-click + wheel to control the browser.

Mouse Gesture and Wheel Actionคืออะไร?

Mouse Gesture and Wheel Action เป็นส่วนขยายของ Chrome ที่พัฒนาโดย morokoshi และคุณลักษณะหลักของมันคือ "Mouse gestures, right-click + wheel to control the browser."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Mouse Gesture and Wheel Action

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

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

                        Manipulate tabs and windows, bookmarks, mute tabs, change zoom rate, etc.

Functions that can be performed
- Go back
- Go forward
- Scroll up
- Scroll down
- Scroll left
- Scroll right
- Scroll to top
- Scroll to bottom
- New tab
- Add tab to group
- Remove tab from group
- Duplicate tab
- Close tab
- Close tabs to the left
- Close tabs to the right
- Close other tabs
- Reopen closed tab
- Reload
- Hard reload 
- Go to left tab
- Go to right tab
- Go to left tab (or the other side if at the edge)
- Go to right tab (or the other side if at the edge)
- Go to the leftmost tab
- Go to the rightmost tab
- Open options
- Add to bookmarks bar
- Add bookmark
- Delete bookmark
- New window
- Close window
- Close all windows
- Maximize window
- Minimize window
- Fullscreen
- Copy url
- Copy title
- Mute
- Unmute
- Toggle mute
- Mute all tabs
- Unmute all tabs
- Zoom in
- Zoom out
- Reset to default zoom level
- Disable this extension on this tab

Version History
1.0.0: Initial version
1.1.0: Enhanced bookmark function
1.1.1: Bug fixes
1.1.2: Bug fixes
1.2.0: Add tab grouping function. Changed full screen and window maximization to a toggle system.                    

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

ชื่อ Mouse Gesture and Wheel Action Mouse Gesture and Wheel Action
ID mgonafaalkhlmjjelcgikignigmjhmjj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/mouse-gesture-and-wheel-a/mgonafaalkhlmjjelcgikignigmjhmjj
คำอธิบาย Mouse gestures, right-click + wheel to control the browser.
ขนาดไฟล์ 28.67 KB
จำนวนการติดตั้ง 148
เวอร์ชันปัจจุบัน 1.2.0
อัปเดตครั้งล่าสุด 2023-08-19
วันที่เผยแพร่ 2023-07-10
คะแนน 4.50/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา morokoshi
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mouse Gesture and Wheel Action",
    "version": "1.2.0",
    "manifest_version": 3,
    "description": "__MSG_extensionDescription__",
    "default_locale": "en",
    "icons": {
        "16": "icon\/16.png",
        "48": "icon\/48.png",
        "128": "icon\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "common.js",
                "content.js"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "background": {
        "service_worker": "service-worker.js"
    },
    "permissions": [
        "storage",
        "sessions",
        "bookmarks"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    }
}