>>192 ですが
以下で出来ました
// タブバーのホイールによるスクロールを抑止
(function() {
let tabbar = document.getElementById('tabbrowser-tabs');
if(tabbar){
tabbar.addEventListener('wheel', function(e){
e.stopPropagation();
e.preventDefault();
}, { capture: true });
}
})();