Download Firegestures
A customizable mouse gestures extension which enables you to execute various commands and user scripts with five types of gestures.
Features:
- Mouse Gestures (Move mouse with holding right-click).
- Wheel Gestures (Scroll wheel with holding right-click).
- Rocker Gestures (Left-click with holding right-click and vice versa).
- Keypress Gestures (Mouse gesture with holding Ctrl / Shift key).
- Tab Wheel Gestures (Scrolling wheel on the tab bar).
- Install and make your own scripts to add functions.
Here's a demo video:
Scripts used:
- Web Search - BrowserSearch.webSearch();
- Location Bar - openLocation();
- Duplicate Tab (Needed if you have Tab Mix Plus) - gBrowser.duplicateTab(gBrowser.mCurrentTab);
- Secure Login (Secure Login Extension) - secureLogin.login();
- Search Wikipedia/Google/Yahoo/etc - just change the const url
(e.g: YAHOO - ")
NOTE: type "test" to any search engine and after the results are shown copy the URL in the Location bar then change the word test to "FireGestures.getSelectedText()"
Script:
const URL =const URL = "http://search.yahoo.com/search?p="+FireGestures.getSelectedText()+"&ei=UTF8&fr=moz2";
gBrowser.loadOneTab(URL); - Go to a site - (eg: facebook, myspace, digg...etc)
const URL = "http://www.facebook.com"
gBrowser.selectedTab = gBrowser.addTab(URL);
NOTE: just put desired url in the URL variable
0 comments:
Post a Comment