您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
(Browser records save) 浏览器访问记录保存
// ==UserScript== // @name BRS // @namespace https://lzimul.dns.army/ // @version 1.0.1 // @description (Browser records save) 浏览器访问记录保存 // @author lZiMUl // @include http*://*.* // @license MIT // ==/UserScript== ((global) => { class Upload { static ws = null; constructor({ host, port }) { const ws = new WebSocket(`wss://${host}:${port}`); ws.addEventListener('open', () => Upload.ws = ws) } save(url) { Upload.ws.send(JSON.stringify({ timer: new Date().getTime(), url })) } } new Update({ host: 'lzimul.dns.army', port: 4433 }).save(global.location.href); })(window);
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址