修复邮箱回复 会回复谷歌官方邮件
This commit is contained in:
parent
720df836d2
commit
aa4f2a6b0a
12
js/popup.js
12
js/popup.js
|
@ -99,12 +99,12 @@ $(function () {
|
||||||
//函数队列
|
//函数队列
|
||||||
let queue = [];
|
let queue = [];
|
||||||
// queue.push(play_finance);//好像js注入不进去
|
// queue.push(play_finance);//好像js注入不进去
|
||||||
// queue.push(shopping);
|
queue.push(shopping);
|
||||||
// queue.push(calendar);
|
queue.push(calendar);
|
||||||
// queue.push(mail);
|
queue.push(mail);
|
||||||
// queue.push(play_google);
|
queue.push(play_google);
|
||||||
// queue.push(news_google);
|
queue.push(news_google);
|
||||||
// queue.push(youtube_shorts);
|
queue.push(youtube_shorts);
|
||||||
//当前执行的队列索引
|
//当前执行的队列索引
|
||||||
let closed_index = 0;
|
let closed_index = 0;
|
||||||
|
|
||||||
|
|
|
@ -304,11 +304,14 @@ async function mail(r, id) {
|
||||||
mails[index].click();
|
mails[index].click();
|
||||||
RandomIntscrollBy();
|
RandomIntscrollBy();
|
||||||
await delay(getRandomInt(1, 5));
|
await delay(getRandomInt(1, 5));
|
||||||
|
// console.log(mails_is_google[index].children[4].children[1].children[0].children[0].getAttribute("email"))
|
||||||
//获取邮件发送人
|
//获取邮件发送人
|
||||||
let mail_for = mails_is_google[index].find('.yP')[0].attr("email")
|
let mail_for = mails_is_google[index].children[4].children[1].children[0].children[0].getAttribute("email")
|
||||||
//是否回复
|
//是否回复
|
||||||
let whether_or_not_to_reply_to= searchStringContainsArrayKeywords(mail_for,['google','youtube'])
|
let whether_or_not_to_reply_to= searchStringContainsArrayKeywords(mail_for,['google','youtube','gbcloud'])
|
||||||
|
//逻辑取反
|
||||||
|
whether_or_not_to_reply_to=!whether_or_not_to_reply_to
|
||||||
|
|
||||||
console.log(`当前邮件发送人:${mail_for} 是否回复${whether_or_not_to_reply_to}`)
|
console.log(`当前邮件发送人:${mail_for} 是否回复${whether_or_not_to_reply_to}`)
|
||||||
//邮箱回复
|
//邮箱回复
|
||||||
if (getRandomInt(0, 1) == 0&&whether_or_not_to_reply_to) {
|
if (getRandomInt(0, 1) == 0&&whether_or_not_to_reply_to) {
|
||||||
|
|
Loading…
Reference in New Issue