Rated 5 out of 5 stars

can you make a custom script for FireGestures?
i really appreciate it

Oh ya, Nice Addon!!
Thanks

This review is for a previous version of the add-on (0.1.3.1-signed). 

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