// ==UserScript== // @name PTA查询历史提交记录 // @namespace 269797689@qq.com // @version 1.0 // @description 可以快速查询自己的所有历史提交记录 // @author Rilomilo // @match https://pintia.cn/problem-sets* // @grant none // @require https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js // @run-at document-idle // @downloadURL none // ==/UserScript== (function() { $.ajax({ type:"GET", url:"https://pintia.cn/api/u/current", dataType:"json", success:(info_obj)=>{ timer=setInterval(() => { if($('.SecondarySidebar_31VUT').length!=0 && location.href.match(/problem-sets\/(\d+)/) && $('.SecondarySidebar_31VUT a:last').text()!="查看我的所有提交" ){ let pid=location.href.match(/problem-sets\/(\d+)/)[1]; $('.SecondarySidebar_31VUT').append( ''+ ''+ ''+ '查看我的所有提交'+ ''+ '
' ); } }, 1000); } }) })();