Skip to content

Instantly share code, notes, and snippets.

@junbaor
Created October 20, 2016 02:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save junbaor/23c5ed12414d3d8a6450165449761def to your computer and use it in GitHub Desktop.
Save junbaor/23c5ed12414d3d8a6450165449761def to your computer and use it in GitHub Desktop.
清理百度云通讯录、短信、通话记录
<!-- 使用说明 -->
<!-- 先打开相应的百度云 web 页面,按 F12 打开开发人员工具,选中 console 标签,粘贴代码回车执行 -->
<!-- 删除短信 -->
setInterval(function(){
$(".check-all.default-check-all").click();
$(".button_batch.btn_hover").click();
$(".alert-dialog-commands.clearfix.center>:first-child").click();
}, 2000);
<!-- 删除联系人 -->
setInterval(function(){
$(".chek.chek-box-selected").click();
$("#del-list").find("b").click();
}, 2000);
<!-- 通话记录 -->
setInterval(function(){
$("span[node-type='chk-all']").click();
$("a[node-type='del-btn']").click();
$(".sbtn.okay").click();
}, 2000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment