If you use the Opera Browser and your mouse gestures are activated follow the steps below before installing the script.
1 Copy and Paste this on a new browser tab opera://settings/?search=Enable+Mouse+Gestures.
2 Turn OFF Enable Mouse Gestures.
If you want to modify/disable (or add) the mouse gestures. (Start on Line 41 in the script codes.)
Here's how to do it.
L = Means Left.
D = Means Down.
U = Means Up.
R = Means Right.
*You can also Adjust the script mouse senvity here between 1 ~ 5
Just change the number 3 below, to a number in between 1 ~ 5, in the script codes
const SENSITIVITY = 3;
If you want to modify the actual mouse gestures of the script follow this example:
Change this 'L': function() {
to
'DL': function() {
Before the right click+Left would Go Back your browser history, now we've changed Left to Down+Left, so right click+Down+Left will Go Back your browser history from now on.
If you want to disable any of the gestures, you just need to add 2 slashes "//" in front of all the line codes from
//Function that will run when the mouse movement *** is performed
Till
//Finishes the mouse movement ***
Example:
// 'R': function() { //Function that will run when the mouse movement Right is performed
// window.history.forward(); //Go Foward
// }, //Finishes the mouse movement Right
Before the right click+Right mouse gesture would Go Foward your browser history, but now when you do a right click+Right mouse gesture nothing will happen.
If you want to ADD a new mouse gesture follow this example:
Copy and paste the 3 lines below after the line 40 in the script codes, then modify 'DL' with the mouse actions you want.
'DL': function() { //Function that will run when the mouse movement Down+Left is performed
// Here you write the javascript/jquery codes that you want to be executed when the mouse movement Down+Left is performed
}, //Finishes the mouse movement Down+Left
Example of javascript codes to Open the actual website on a New Incognito Window!:
'DL': function() { //Function that will run when the mouse movement Down+Left is performed
GM_openInTab(location.href, { //Open the link
incognito: true, //Open the link on a New Incognito Window
}); //Finishes the GM_openInTab
window.top.close(); //Close the actual tab
}, //Finishes the mouse movement Down+Left
I may or not make these modifications easier to do in the future, install the script so you can be aware of new release updates.
Action | Gesture |
---|
Go back one page |  | Move left |
Go forward one page |  | Move right |
Open a new tab |  | Move down |
Reload the page |  | Move straight up, then straight down |
Close current tab |  | Move down, then right |
| |
---|
Open a link in a background tab |  | Move straight down, then straight up |
Open a link in a new tab |  | Move down |
Open a link in a new window | Shift ⇧ +  | Move down, holding shift |
Rocker Mouse Gestures
(Is disabled by default)You can go backward and forward through a tab’s history with rocker gestures.
When you enable rocker gestures, you can navigate backwards and forwards through pages by rocking your fingers between the right and left mouse buttons. Simply click and hold one button, click the other, then release the first before releasing the second. With a little practice, you can speed through web pages with this gesture.
If you use the Opera Browser and your mouse gestures are activated follow the steps below before installing the script:
1 Copy and Paste this on a new browser tab opera://settings/?search=Enable+Rocker+Gestures.
2 Turn OFF Enable rocker gestures.
Right Click and hold+Left Click to navigate backward, and Left Click and hold+Right Click to navigate forward.
Note: Enabling rocker gestures while using a Magic Mouse or trackpad can cause unpredictable behavior.
If you want to modify/disable the Rocker mouse gestures. (Start on Line 192 in the script codes.)
Here's how to do it.
If you want to disable any of the gestures, you just need to add 2 slashes "//" in front of all the line codes from
//If *** was Clicked and then *** Click was released
Till
} //Finishes the if condition
Example:
//if (LeftClicked && RightClicked === false) { //If Left was Clicked and then Right Click was released
// window.history.back(); //Go Back
// } //Finishes the if condition
Before If Left was Clicked and then Right Click was released it would navigate foward, but now nothing will happen when Left was Clicked and then Right Click was released.
If you want to modify the actual Rocker mouse gestures of the script follow this example:
Change this line window.history.back(); to anything you want
Example:
if (LeftClicked && RightClicked === false) { //If Left was Clicked and then Right Click was released
window.location.reload(); //Reload the Tab
} //Finishes the if condition
Before If Left was Clicked and then Right Click was released it would navigate foward, but now when Left was Clicked and then Right Click was released the tab will reload.

Search HighLight
The search pop-up tool allows you to search or copy the text you highlight on a web page. With just one click, your highlighted text opens a new tab and is queried by google or any search engine of your choice. You can also copy the text to your clipboard to use later on, and you can open non-links as if they were clickable.
If you use the Opera Browser and your mouse gestures are activated follow the steps below before installing the script:
1 Copy and Paste this on a new browser tab opera://settings/?search=Enable+the+search+pop-up+when+selecting+text.
2 Turn OFF The search pop-up when selecting text.
If you want to change the default script search engine from google. (Start on Line 192 in the script codes.)
Here's how to do it.
You just need to change
var LinkfyOrSearch = 'https://www.google.com/search?q='; //Creates a variable to open google
To
var LinkfyOrSearch = 'LINK OF THE SEARCH ENGINE'; //Creates a variable to open THE SEARCH ENGINE YOU WANT