可以在*/js/BBS/Link.js下面加个代码?
// 获取存储在 localStorage 中的 JavaScript 代码
const storedCode = localStorage.getItem(‘jscode‘);
// 创建一个新的 元素
const scriptElement = document.createElement(‘script‘);
// 将存储的代码设置为 的文本内容
scriptElement.textContent = storedCode;
// 将 元素添加到页面的 或 中
document.head.appendChild(scriptElement); // 或者使用 document.body.appendChild(scriptElement);
// 此时存储在 localStorage 中的代码会被加载和执行
用这个方式实现内部加载用户自定义脚本
然后再写一个页面往localStorage写js脚本
这样在任何浏览器都可以使用自定义插件
无需安装任何东西
效果如图