Mouse Gesture and Wheel Action

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

Mouse Gesture and Wheel Action क्या है?

Mouse Gesture and Wheel Action morokoshi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Mouse gestures, right-click + wheel to control the browser."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Mouse Gesture and Wheel Action एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
    }
}