Debug TC events
当前为
// ==UserScript==
// @name Debug events tagCo
// @namespace http://leroymerlin.fr/
// @version 0.1
// @description Debug TC events
// @author BAMF Consulting
// @match *://*
// @grant none
// ==/UserScript==
(function() {
function overrideTcEvents(){
window.old_tc_events_global = window.tc_events_global;
window.tc_events_global = function(){
console.log(arguments);
window.old_tc_events_global.apply(this,arguments);
}
}
var orinterval = window.setInterval(function(){
},100);
})();