Console for mobile browsers - eruda

try to take over the world!

// ==UserScript==
// @name         Console for mobile browsers - eruda
// @namespace    https://github.com/vancez
// @version      1.0
// @description  try to take over the world!
// @author       You
// @match        *://*/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var script = document.createElement('script');
    script.src="//cdn.jsdelivr.net/npm/eruda";
    document.body.appendChild(script);
    script.onload = function () {
        eruda.init();
    }
})();