For those who don't have dev tools. Hit ctrl + shift + i to open and close it
当前为
// ==UserScript==
// @name NDT injector
// @namespace https://warum-llamas.tk
// @version 1
// @description For those who don't have dev tools. Hit ctrl + shift + i to open and close it
// @author You
// @match *://*/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var NDTSCRIPT = document.createElement("SCRIPT");
NDTSCRIPT.src="https://gitcdn.xyz/cdn/Joe-Capewell/ndt/5ac1a4b7551d51c29afe4d4fd4691a2240074b47/ndt.js";
document.body.appendChild(NDTSCRIPT);
})();