Mouse Gestures

The extension currently allows 2 mouse gestures: back and forward. Hold right mouse button pressed and move mouse left - that…

Mouse Gestures क्या है?

Mouse Gestures Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "The extension currently allows 2 mouse gestures: back and forward. Hold right mouse button pressed and move mouse left - that…"।

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

screenshot

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

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

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

                        The extension currently allows 2 mouse gestures: back and forward.  Hold right mouse button pressed and move mouse left - that affects as back. Hold right mouse button pressed and move mouse right - that affects as forward. Don't be scared of mouse track - it will disappear when the button is released!                    

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

नाम Mouse Gestures Mouse Gestures
ID mihlicfjbknojccbmgepbbgpndhibbng
आधिकारिक URL https://chromewebstore.google.com/detail/mouse-gestures/mihlicfjbknojccbmgepbbgpndhibbng
विवरण The extension currently allows 2 mouse gestures: back and forward. Hold right mouse button pressed and move mouse left - that…
फ़ाइल का आकार 11.54 KB
स्थापना संख्या 13
वर्तमान संस्करण 1.0
अंतिम अपडेट 2020-04-20
प्रकाशन तिथि 2020-04-16
डेवलपर Unknown
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mouse Gestures",
    "version": "1.0",
    "manifest_version": 2,
    "browser_action": [],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk='; object-src 'self'",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    }
}