Mouse Gestures

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

Co je Mouse Gestures?

Mouse Gestures je rozšíření Chrome vyvinuté Unknown, a jeho hlavní funkcí je „The extension currently allows 2 mouse gestures: back and forward. Hold right mouse button pressed and move mouse left - that…“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Mouse Gestures

Stáhněte si soubory rozšíření Mouse Gestures ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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!                    

Základní Informace o Rozšíření

Název Mouse Gestures Mouse Gestures
ID mihlicfjbknojccbmgepbbgpndhibbng
Oficiální URL https://chromewebstore.google.com/detail/mouse-gestures/mihlicfjbknojccbmgepbbgpndhibbng
Popis The extension currently allows 2 mouse gestures: back and forward. Hold right mouse button pressed and move mouse left - that…
Velikost souboru 11.54 KB
Počet instalací 13
Aktuální Verze 1.0
Poslední Aktualizace 2020-04-20
Datum Vydání 2020-04-16
Vývojář Unknown
Typ Platby free
Podporované Jazyky 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"
    }
}