Created
March 18, 2010 02:16
-
-
Save satyr/335977 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if(!Utils._oUIB){ | |
let U = Utils.__proto__; | |
U._oUIB = Utils.openUrlInBrowser; | |
U.openUrlInBrowser = function openUrlInBrowserForegroundPlease(){ | |
U.prefs.set('browser.tabs.loadInBackground', false); | |
U._oUIB.apply(0, arguments); | |
U.prefs.set('browser.tabs.loadInBackground', true); | |
}; | |
} | |
//function cmd_ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment