We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
我当前可见的菜单共 8 项:
0 置顶 1 推广 2 编辑微博 3 转换为粉丝可见 4 转换为好友圈可见 5 转换为自己可见 6 删除 7 复制微博地址
安装脚本后的第 57 行
item[item.length - 3].click();
会命中菜单条目 8 - 3 = 5 转换为自己可见,会让第一条微博在 转换为自己可见 和 转换为好友圈可见 状态间轮回。 改为
8 - 3 = 5 转换为自己可见
转换为自己可见
转换为好友圈可见
item[item.length - 2].click();
后,命中到 8 - 2 = 6 删除,顺利删除。
8 - 2 = 6 删除
感谢您的辛勤付出。
The text was updated successfully, but these errors were encountered:
谢谢,已经按你的方法修改了,不过我没有验证。
这期间微博可能增加过功能。
Sorry, something went wrong.
No branches or pull requests
我当前可见的菜单共 8 项:
安装脚本后的第 57 行
会命中菜单条目
8 - 3 = 5 转换为自己可见
,会让第一条微博在转换为自己可见
和转换为好友圈可见
状态间轮回。改为
后,命中到
8 - 2 = 6 删除
,顺利删除。感谢您的辛勤付出。
The text was updated successfully, but these errors were encountered: