// ==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
// @include https://www.sui.com/tally/new.do
// @version 0.1.1
// @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()
refresh();
})
function refresh() {
if (window.location.href === 'https://www.sui.com/account/account.do') {
handle(document)
} else {
$('#bg1-c').html('<dir style="padding: 30px 0 0 1090px;">...</div>')
loadDoc('https://www.sui.com/account/account.do', {}, function(doc, responseDetail, meta) {
handle(doc)
})
}
}
function handle(doc) {
var html = '<table>'
var first
$(doc).find('.j-acc-show').each(function() {
var name = $(this).find('.acc-name').text()
if (first && first !== name.charAt(1)) {
html += '<tr><td> </td><td> </td></tr>'
}
first = name.charAt(1)
html += '<tr><td>' + name + '</td><td><span style="font-weight: bold;">' + $(this).find('.child-r1 .child-r1-money').text().replaceAll(',', '') + '</span></td></tr>'
});
html += '</tr></table>'
$('#bg1-c').html('<dir style="padding: 30px 0 0 1090px;">' + html + '<button id="btn-refresh">刷新</button></div>')
$('#btn-refresh').click(function(){
if (window.location.href === 'https://www.sui.com/account/account.do') {
location.reload()
} else {
refresh()
}
})
}
// 判断,空返回空字符串
function opt(val) {
if (!val) return '';
if (val instanceof Array) {
if (val.length > 0) {
return val[0];
}
} else {
return val;
}
}
// 对使用GM_xmlhttpRequest返回的html文本进行处理并返回DOM树
function page_parser(responseText) {
// 替换一些信息防止图片和页面脚本的加载,同时可能加快页面解析速度
responseText = responseText.replace(/s+src=/ig, ' data-src='); // 图片,部分外源脚本
responseText = responseText.replace(/<script[^>]*?>[\S\s]*?<\/script>/ig, ''); //页面脚本
return (new DOMParser()).parseFromString(responseText, 'text/html');
}
// 加载网页
function loadDoc (url, meta, callback, fail) {
GM_xmlhttpRequest({
method: 'GET',
url: url,
onload: function (responseDetail) {
if (responseDetail.status === 200) {
let doc = page_parser(responseDetail.responseText)
callback(doc, responseDetail, meta)
} else if (fail){
fail(responseDetail, meta);
}
},
onerror: function(err) {
if (fail) {
fail(err, meta);
}
}
})
}
// get请求
function doGet (url, meta, callback, fail) {
GM_xmlhttpRequest({
method: 'GET',
url: url,
onload: function (responseDetail) {
if (responseDetail.status === 200) {
callback(JSON.parse(responseDetail.responseText), responseDetail, meta)
} else if (fail){
fail(responseDetail, meta);
}
},
onerror: function(err) {
if (fail) {
fail(err, meta);
}
}
})
}
// post请求
function doPost (url, headers, data, meta, callback, fail) {
GM_xmlhttpRequest({
method: "POST",
url: url,
data: data,
headers: headers,
onload: function(responseDetail){
if (responseDetail.status === 200) {
callback(JSON.parse(responseDetail.responseText), responseDetail, meta)
} else if (fail){
fail(responseDetail, meta);
}
},
onerror: function(err) {
if (fail) {
fail(err, meta);
}
}
})
}
})()