autoSelectTab.uc.js
以外と便利なんだけど、68.0ではOKなるも69.0では動かない。
能ある人、下記ソースの修正箇所教えて!

location == "chrome://browser/content/browser.xul" && (document.getElementById("tabbrowser-tabs") || gBrowser.mTabBox).addEventListener('mouseover', function self(e) {
if ((self.target = e.target).localName === 'tab') {
if (!self.timeoutID) {
this.addEventListener('mouseout', function () {
clearTimeout(self.timeoutID)
}, false);
}
self.timeoutID = setTimeout(function () {
gBrowser.selectedTab = self.target;
}, 450);
}
}, false)