Yah / New Userscript

// ==UserScript==
// @name         New Userscript
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        http://*/*
// @grant        none
// @license MIT
// ==/UserScript==

(function () {
  var script = document.createElement('script');
  script.src = ' http://eruda.liriliri.io/eruda.min.js';
  document.body.appendChild(script);
  script.onload = function () {
    eruda.init();
  };
})();