Infocatcher님의 개발자 댓글
5점중 5점 받음
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
모음집을 제작하시려면 Mozilla 부가 기능 계정이 있어야 합니다.
아니면 현재 사용중인 계정으로 로그인 하세요