Debug events tagCo

Debug TC events

目前为 2018-11-15 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name Debug events tagCo
  3. // @namespace http://leroymerlin.fr/
  4. // @version 0.1
  5. // @description Debug TC events
  6. // @author BAMF Consulting
  7. // @match *://*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. function overrideTcEvents(){
  13. window.old_tc_events_global = window.tc_events_global;
  14. window.tc_events_global = function(){
  15. console.log(arguments);
  16. window.old_tc_events_global.apply(this,arguments);
  17. }
  18. }
  19. var orinterval = window.setInterval(function(){
  20.  
  21. },100);
  22. })();