您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
账号汇总
当前为
// ==UserScript== // @name 随手记 // @description 账号汇总 // @author 018([email protected]) // @contributor Rhilip // @connect * // @grant GM_xmlhttpRequest // @grant GM_setClipboard // @grant GM_addStyle // @grant GM_setValue // @grant GM_getValue // @grant GM_listValues // @grant GM_deleteValue // @grant GM_registerMenuCommand // @require https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js // @require https://gf.qytechs.cn/scripts/420063-018-js/code/018js.js?version=890174 // @include https://www.sui.com/account/account.do // @version 0.1.0 // @icon https://res.sui.com/favicon.ico // @run-at document-end // @namespace http://018.ai // ==/UserScript== // This Userscirpt can't run under Greasemonkey 4.x platform if (typeof GM_xmlhttpRequest === 'undefined') { alert('不支持Greasemonkey 4.x,请换用暴力猴或Tampermonkey') return } ;(function () { 'use strict'; $(document).ready(function () { $('#mainContent').css('margin', '-371px auto 0px 60px') $('.footer').hide() var html = '<table>' $('.j-acc-show').each(function() { //$(this).addClass('acc-show'); //console.info($(this).find('.acc-name').text()) //console.info($(this).find('.child-r1 .child-r1-money').text()) //console.info($(this).find('.child-r2 .font-color-red').text()) //console.info($(this).find('.child-r2 .font-color-green').text()) html += '<tr><td>' + $(this).find('.acc-name').text() + '</td><td><span style="font-weight: bold;">' + $(this).find('.child-r1 .child-r1-money').text() + '</span><td></tr>' }); html += '</tr></table>' $('#bg1-c').html('<dir style="padding: 30px 0 0 1090px;">' + html + '</div>') }) })()
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址