Console for mobile browsers - eruda

try to take over the world!

  1. // ==UserScript==
  2. // @name Console for mobile browsers - eruda
  3. // @namespace https://github.com/vancez
  4. // @version 1.0
  5. // @description try to take over the world!
  6. // @author You
  7. // @match *://*/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. var script = document.createElement('script');
  15. script.src="//cdn.jsdelivr.net/npm/eruda";
  16. document.body.appendChild(script);
  17. script.onload = function () {
  18. eruda.init();
  19. }
  20. })();