Restore Console

Restore the Console that has been blocked by some websites

  1. // ==UserScript==
  2. // @namespace Chef
  3. // @name Restore Console
  4. // @version 1.0.0
  5. // @description Restore the Console that has been blocked by some websites
  6. // @match *
  7. // @grant none
  8. // @license MIT
  9. // ==/UserScript==
  10.  
  11. (function () {
  12. "use strict";
  13. var iframe = document.createElement('iframe');
  14. document.body.appendChild(iframe);
  15. window.console = iframe.contentWindow.console;
  16. // iframe.contentWindow.console.log('Console Fixes');
  17. })();