Our Mouse Gesture

This is Mouse Gesture Extension. This has 22 gesture functions and mouse wheel action function.

Was ist Our Mouse Gesture?

Our Mouse Gesture ist eine Chrome-Erweiterung, die von holyblue.jp entwickelt wurde, und ihr Hauptmerkmal ist "This is Mouse Gesture Extension. This has 22 gesture functions and mouse wheel action function.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Our Mouse Gesture-Erweiterungs-CRX-Datei herunterladen

Laden Sie Our Mouse Gesture-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        【Feature Description 】
This is an extension of mouse gestures. 

I tried various mouse gesture extensions, but none of them could minimize the window, so I created it myself. 

It implements the following actions. 
You can change the direction of the mouse gesture that triggers the action on the extension's options window. 

■Mouse Action Function
 
  (01)New window (left,up)
  (02)Close window (left,down)
  (03)Maximize window (down,up)
  (04)Fullscreen window (down,up,down)
  (05)Normalize window (down)
  (06)Minimize window (down,left)


  (07)Restore last close window or tab (down,right,up)

 
  (08)New tab (up)
  (09)Close tab (down,right)
  (10)Close right tab (-)
  (11)Close left tab (-)
  (12)Close all right tab (up,right,down)
  (13)Close all left tab (up,left,down)
  (14)Close all other tab (up,down,right)
  (15)Reload tab (up,down)
  (16)Reload tab bypass local chache (up,down,up)
  (17)Focus right tab (up,right)
  (18)Focus left tab (up,left)

 
  (19)Page back history (left)
  (20)Page forward history (right)
  (21)Scroll to the page top (right,up)
  (22)Scroll to the page bottom (right,down)

 *The values in parentheses are the default settings for mouse gestures. 

You can also set the action when scrolling the mouse wheel up and down while right-clicking from the above 22 actions. 
By default, left and right tab movement is set. 
You can also change the settings on the extension option window. 


【Operation-verified OS/Browser】
  ・Windows 11 - Chrome

【User data handling and privacy 】
・This extension does not handle personal or confidential information. 
 In addition, no information is sent to the outside. 

【Limitations】
・This extension doesn't work on Chrome's built-in pages such as "New Tab Page" and
    chrome related pages such as "Chrome Web Store" because of Google's security restrictions.
・It may not work properly for an OS that has not been verified for operation. 

【Copyright】
・The copyright of this extension belongs to me. 
  The copyright provisions shall be governed by the laws of Japan. 

【Disclaimer】
・I am not responsible for any problems or damages caused by using this extension, regardless of their predictability. 
  Please use at your own risk. 

【Revision history】
・v1.0.4 - May 13, 2023
  Implemented the following features requested by user reviews:
   ・Restore last close window or tab

・v1.0.3 - May 05, 2023
  Implemented the following features requested by user reviews:
   ・Close all right tab
   ・Close all left tab
   ・Close all other tab
  Display release notes when a new version is installed.
  Added a menu to display release notes in the "Others" tab of the options screen.
・v1.0.2 - Apr 16, 2023
  Fixed the problem that export settings error.
  Added button to clear mouse gesture settings.
・v1.0.1 - Oct 10, 2022
  Fixed the problem that settings are cleared when Chrome is updated.
・v1.0.0 - July 23, 2022
  Supports Chrome Extension Manifest file v3.
・v0.4.5 - May 01, 2022
  Implemented the following functions requested by user reviews.
   ・Disable mouse wheel action.
   ・Close right tab, Close left tab
・v0.4.4 - May 04, 2021
  Minor renovation.
・v0.4.3 - Mar 18, 2021
  Fixed mouse gestures to work even before the page load is complete.                    

Grundlegende Informationen zur Erweiterung

Name Our Mouse Gesture Our Mouse Gesture
ID jmohbogdcndleclcgnmjnfmghegbdfma
Offizielle URL https://chromewebstore.google.com/detail/our-mouse-gesture/jmohbogdcndleclcgnmjnfmghegbdfma
Beschreibung This is Mouse Gesture Extension. This has 22 gesture functions and mouse wheel action function.
Dateigröße 409 KB
Installationsanzahl 2,506
Aktuelle Version 1.0.4
Letztes Update 2023-05-14
Veröffentlichungsdatum 2021-02-16
Bewertung 3.67/5 Insgesamt 18 Bewertungen
Entwickler holyblue.jp
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Our Mouse Gesture",
    "version": "1.0.4",
    "manifest_version": 3,
    "description": "__MSG_ext_desc__",
    "icons": {
        "16": "img\/OurMouseGesture_icon_16.png",
        "32": "img\/OurMouseGesture_icon_32.png",
        "48": "img\/OurMouseGesture_icon_48.png",
        "64": "img\/OurMouseGesture_icon_64.png",
        "128": "img\/OurMouseGesture_icon_128.png",
        "256": "img\/OurMouseGesture_icon_256.png",
        "512": "img\/OurMouseGesture_icon_512.png"
    },
    "author": "holyblue",
    "default_locale": "en",
    "permissions": [
        "tabs",
        "storage",
        "sessions"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/loader.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/content.js",
                "js\/MouseGesturesActionClass.js",
                "js\/common\/defaultsettings.js",
                "js\/MyCanvasClass.js",
                "js\/MyMouseClass.js",
                "js\/common\/common.js",
                "js\/common\/MyLoggerClass.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "js\/event.js",
        "type": "module"
    },
    "options_ui": {
        "page": "option\/options.html",
        "open_in_tab": true
    }
}