代码完全使用 curros 编写
https://github.com/SirYuxuan/AutoMessage
brew install --cask SirYuxuan/automessage/automessage
1
kiritoyui 5 天前
在用 MessAuto https://github.com/LeeeSe/MessAuto ,作者删库了 目前还能用,试试你这个
|
6
duolaamengv2 5 天前
Mac 不是本来就支持识别 iMessage 和邮箱的验证码自动填充吗
|
7
wynemo 4 天前
小问题 主窗口 z 轴太高了 😅
|
8
Achieve7 3 天前
``` bash
#!/bin/bash result=$(sqlite3 ~/Library/Messages/chat.db 'SELECT text FROM message WHERE datetime(date/1000000000 + 978307200,"unixepoch","localtime") > datetime("now","localtime","-60 second") ORDER BY date DESC LIMIT 1;') name="验证码"; if [ ! $result ]; then echo "latest not receive code messsages"; # osascript -e "display notification \"最近 60 秒未收到验证码!\" with title \"提示\" "; fi if [[ "$result" =~ "$name" ]]; then code=`echo $result | grep -o "\d\{4,6\}"`; echo -n "$code"; # 将获取到的数字输出到剪贴板 # echo "$code" | pbcopy; fi ``` 写个 shell 脚本就搞定了 |
9
Aixtuz 3 天前
对我而言,主要的问题是:我验证码都是无忧行托管的 8 元保号的那张卡...
|
13
maemolee 21 小时 45 分钟前
好奇怪,我用 homebrew 安装,会报错 SHA256 mismatch ,然后安装失败
|