Basic Gestures

Basic mouse gestures for back/forward, new/close tab and scroll to top/bottom.

Basic Gestures क्या है?

Basic Gestures BPS द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Basic mouse gestures for back/forward, new/close tab and scroll to top/bottom."।

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

screenshot

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

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

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

                        This simple extension adds basic mouse gestures for back/forward, new/close tab and scroll to top/bottom.

Hold down right mouse button, move mouse and then release button to execute one of the following commands.

Left         => Back
Right       => Forward
Up           => Scroll to top or Open new tab (can be changed in the preferences)
Down      => Scroll to bottom
Down + Right => Close current tab
Right + Down => Close current tab   

Linux and Mac users: Press right mouse button twice to open context menu.

New in version 1.4:
-------------------------------
Migration to Manifest V3

New in version 1.3:
-------------------------------
New gesture: Up => Scroll to top
New gesture: Down => Scroll to bottom
New option: Up = "Open new tab" instead of "Scroll to top"                    

एक्सटेंशन की मूल जानकारी

नाम Basic Gestures Basic Gestures
ID fjiafbapfbgehmngjallajbeljllmkfj
आधिकारिक URL https://chromewebstore.google.com/detail/basic-gestures/fjiafbapfbgehmngjallajbeljllmkfj
विवरण Basic mouse gestures for back/forward, new/close tab and scroll to top/bottom.
फ़ाइल का आकार 13.73 KB
स्थापना संख्या 1,146
वर्तमान संस्करण 1.4
अंतिम अपडेट 2022-08-19
प्रकाशन तिथि 2016-11-08
रेटिंग 4.44/5 कुल 16 रेटिंग्स
डेवलपर BPS
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Basic Gestures",
    "version": "1.4",
    "description": "Basic mouse gestures for back\/forward, new\/close tab and scroll to top\/bottom.",
    "icons": {
        "16": "icons\/icon_16.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "gestures.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "options\/options.html"
    },
    "action": {
        "default_icon": "icons\/icon_19.png"
    }
}