供个人使用
// ==UserScript==
// @name my-plugin
// @namespace http://tampermonkey.net/
// @version 0.0.9
// @description 供个人使用
// @author
// @match my_work_website
// ==/UserScript==
(function () {
'use strict';
if (location.href === 'https://www.nothingboat.site/2young/js/') return
var script = document.createElement('script')
script.src = 'https://www.nothingboat.site/2young/js/app.bundle.js'
document.body.appendChild(script)
})()