Greasy Fork is available in English.

eruda

为当前页面增加eruda调试

// ==UserScript==
// @name         eruda
// @version      0.1
// @description  为当前页面增加eruda调试
// @author       YieldRay
// @license      MIT
// @include      *
// @grant        none
// @namespace    https://greasyfork.org/users/467455
// ==/UserScript==

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