Created
October 20, 2016 02:50
-
-
Save junbaor/23c5ed12414d3d8a6450165449761def to your computer and use it in GitHub Desktop.
清理百度云通讯录、短信、通话记录
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- 使用说明 --> | |
<!-- 先打开相应的百度云 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