Parcourir la source

add disabled code to open all pages in new tab

pull/1/head
10sr il y a 11 ans
Parent
révision
23f1c35130
1 fichiers modifiés avec 20 ajouts et 2 suppressions
  1. +20
    -2
      _keysnail.js

+ 20
- 2
_keysnail.js Voir le fichier

@@ -11,6 +11,24 @@
// command.kill.killRingMax = 15;
// command.kill.textLengthMax = 8192;

// Original is at https://gist.github.com/Griever/62715
(function(){
// this makes all clicks open in new tab.
return;
// test if firefox 12
if (12 > parseFloat(Cc['@mozilla.org/xre/app-info;1'].getService(Ci.nsIXULAppInfo).version))
{
return;
}
whereToOpenLink_org = whereToOpenLink;
eval('whereToOpenLink = ' + whereToOpenLink_org.toString()
.replace('if (ctrl', 'if (true')
// .replace('if (ctrl', 'if (ctrl && !shift|| !ctrl && shift')
// .replace('if (shift ||', 'if (shift && ctrl ||')
// .replace('middle && middleUsesTabs', 'middle && middleUsesTabs && !alt')
);
})();

//////////////////////////////////////
//// sitelocalkeymap
var local = {};
@@ -560,8 +578,8 @@ ext.add("list-tab-history", function () {
continue;
try {
var iconURL = Cc["@mozilla.org/browser/favicon-service;1"]
.getService(Ci.nsIFaviconService)
.getFaviconForPage(entry.URI).spec;
.getService(Ci.nsIFaviconService)
.getFaviconForPage(entry.URI).spec;
} catch (ex) {}
tabHistory.push([iconURL || fav, entry.title, entry.URI.spec, i]);
}


Chargement…
Annuler
Enregistrer