Merge branch 'main' of https://git.shagain.club/lingling/chrome_extensions
This commit is contained in:
commit
1340caf97d
|
@ -1,3 +1,4 @@
|
|||
2177638 修改打包逻辑
|
||||
07b66a0 增加youtube函数
|
||||
1d1789d 修复邮箱卡住问题
|
||||
499c1bd 修复乱序执行错误 增加谷歌新闻阅读
|
||||
|
|
16
js/popup.js
16
js/popup.js
|
@ -2,7 +2,7 @@
|
|||
* @Author: lingling 1077478963@qq.com
|
||||
* @Date: 2024-08-19 09:47:04
|
||||
* @LastEditors: lingling 1077478963@qq.com
|
||||
* @LastEditTime: 2024-08-26 10:59:53
|
||||
* @LastEditTime: 2024-08-26 14:50:09
|
||||
* @FilePath: \谷歌自动搜索邮箱自动点击v3\js\popup.js
|
||||
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
||||
*/
|
||||
|
@ -101,13 +101,13 @@ $(function () {
|
|||
//函数队列
|
||||
let queue = [];
|
||||
// queue.push(play_finance);//好像js注入不进去
|
||||
// queue.push(shopping);
|
||||
// queue.push(calendar);
|
||||
// queue.push(mail);
|
||||
queue.push(youtube);
|
||||
// queue.push(play_google);
|
||||
// queue.push(news_google);
|
||||
// queue.push(youtube_shorts);
|
||||
queue.push(shopping);
|
||||
queue.push(calendar);
|
||||
queue.push(mail);
|
||||
// queue.push(youtube);
|
||||
queue.push(play_google);
|
||||
queue.push(youtube_shorts);
|
||||
queue.push(news_google);
|
||||
//乱序执行 此处有问题
|
||||
// queue=shuffleArray(queue)
|
||||
//当前执行的队列索引
|
||||
|
|
Loading…
Reference in New Issue