利用 油猴脚本 每日填日志
需求
每天填写日志要点好几下,比较麻烦,写个脚本自动点下
代码
-
我现在用的浏览器 双核浏览器
-
浏览器 安装 油猴脚本 tampermonkey
-
点击 tampermonkey
-
控制面板
-
创建两个脚本(因为有一个页面跳转)
-
脚本1 重点是 @match
// ==UserScript==
// @name EveryLog
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match http://192.168.71.7:8080/TFKJ/
// @icon https://www.google.com/s2/favicons?sz=64&domain=tampermonkey.net
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Your code here...
$("#userName").val('name')
$("#password").val('123456')
doSubmit()
// window.location.assign("./implementTemporary.do?act=init")
})();
- 脚本2
// ==UserScript==
// @name EveryLog2
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match http://192.168.71.7:8080/TFKJ/implementTemporary.do?act=init
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Your code here...
$("#add").click()
$("#add_child").click()
$("#taskProjectIds").val(435)
$("#useTimeList>input").click()
const a = window.frames["__calendarIframe"].document
a.getElementById('selectTodayButton').click()
$('#workTypeIds').val('71')
$('#selectTodayButton').click()
$('#normalTimes').val('8')
$('#overTimes').val('0')
})();
- 脚本3
// ==UserScript==
// @name EveryLogOpenWindow
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match http://192.168.71.7:8080/TFKJ/main.do?act=init*
// @icon https://www.google.com/s2/favicons?sz=64&domain=gitee.io
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Your code here...
window.frames["content"].location = 'implementTemporary.do?act=init'
})();
---------------------------------------------
生活的意义就是你自己知道你要做什么,明确目标。没有目标,后面都是瞎扯!
https://pengchenggang.gitee.io/navigator/
SMART原则:
目标必须是具体的(Specific)
目标必须是可以衡量的(Measurable)
目标必须是可以达到的(Attainable)
目标必须和其他目标具有相关性(Relevant)
目标必须具有明确的截止期限(Time-based)
生活的意义就是你自己知道你要做什么,明确目标。没有目标,后面都是瞎扯!
https://pengchenggang.gitee.io/navigator/
SMART原则:
目标必须是具体的(Specific)
目标必须是可以衡量的(Measurable)
目标必须是可以达到的(Attainable)
目标必须和其他目标具有相关性(Relevant)
目标必须具有明确的截止期限(Time-based)