Mouse Gestures Redox( http://www.mousegestures.org/ )で開かれるタブを子タブにするようにした(by A A)

git-svn-id: http://www.cozmixng.org/repos/piro/treestyletab/trunk@6679 599a83e7-65a4-db11-8015-0010dcdd6dc2
This commit is contained in:
piro 2010-06-15 14:48:24 +00:00
parent 8d9d3bcb02
commit 0ae27f9716

View File

@ -756,6 +756,17 @@ TreeStyleTabService.overrideExtensionsOnInitAfter = function TSTService_override
);
}
// Mouse Gestures Redox
// http://www.mousegestures.org/
if ('mgBuiltInFunctions' in window && 'mgLinkInTab' in mgBuiltInFunctions) {
eval('mgBuiltInFunctions.mgLinkInTab = '+
mgBuiltInFunctions.mgLinkInTab.toSource().replace(
'var tab',
'TreeStyleTabService.readyToOpenChildTab(gBrowser); $&'
)
);
}
// Greasemonkey
// https://addons.mozilla.org/firefox/addon/748
if ('GM_BrowserUI' in window && 'openInTab' in GM_BrowserUI) {