简介
在浏览器控制台执行以下js代码,可以将阿里云refresh_token(阿里盘自动签到需要的东西)复制到剪贴板上。
.
下载程序
https://wkdxz.lanzout.com/b03raotze
密码:afx1
.
准备工作,先调节下控制台窗口比例
.
原理 (代码改自10楼 ThemanRonin)
我的这个小程序就是自动打开浏览器,打开控制台,粘贴并执行代码,以便将refresh_token复制到剪贴板上。
仅仅是偷个小懒,没什么技术含量。需要默认浏览器能开启控制台才能用。
.
代码改自10楼 ThemanRonin
copy(JSON.parse(localStorage.token).refresh_token); console.log(JSON.parse(localStorage.token).refresh_token);
补充说明
电脑反应速度不同,程序不一定能完美执行,懂AHK的兄弟可以自己调节下延迟,以便适应自己的电脑。下方是程序源码。
#NoEnv
SendMode Input
SetWorkingDir %A_ScriptDir%
; 打开网址
Run https://www.aliyundrive.com/drive/
Sleep 3000
; 按下F12
Send {F12}
Sleep 1000
; 按下CTRL+L
Send ^l
Sleep 1000
; 粘贴脚本
clipboard := "copy(JSON.parse(localStorage.token).refresh_token); console.log(JSON.parse(localStorage.token).refresh_token);"
Send ^v
Sleep 500
; 按下回车
Send {Enter}
sleep 1200
MsgBox, , 已复制, %clipboard%