To try the thousands of add-ons available here, download Mozilla Firefox, a fast, free way to surf the Web!
CloseWelcome to Firefox Add-ons.
Choose from thousands of extra features and styles to make Firefox your own.
CloseDeveloper reply by Infocatcher
Rated 5 out of 5 stars
can you make a custom script for FireGestures?
i really appreciate it
Oh ya, Nice Addon!!
Thanks
What this custom script should do?
An example based on http://www.xuldev.org/firegestures/makescripts.php :
// Open "dragged" link in new private tab
var srcNode = FireGestures.sourceNode;
var linkURL = FireGestures.getLinkURL(srcNode);
if (!linkURL)
throw "Not on a link";
FireGestures.checkURL(linkURL, srcNode.ownerDocument);
privateTab.readyToOpenTab(true);
gBrowser.selectedTab = gBrowser.addTab(linkURL, {
charset: srcNode.ownerDocument.characterSet,
relatedToCurrent: true
});
Also you can found some examples here:
https://github.com/Infocatcher/Private_Tab#api-functions
To create your own collections, you must have a Mozilla Add-ons account.