Skip to content

Commit 8e48603

Browse files
authored
Create keepalive.js
http://tampermonkey.net/
1 parent ed56c32 commit 8e48603

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

keepalive.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// ==UserScript==
2+
// @name fIMCnow
3+
// @namespace http://tampermonkey.net/
4+
// @version 0.1
5+
// @description try to take over the world!
6+
// @author You
7+
// @match https://imc.armor.com/*
8+
// @grant none
9+
// ==/UserScript==
10+
11+
function fIMC_reIssue() {
12+
var myMenu = document.querySelector(".toolbar-menu-item");
13+
if (myMenu) { myMenu.click(); myMenu.click(); }
14+
}
15+
16+
setInterval(function () {fIMC_reIssue();}, 300000);

0 commit comments

Comments
 (0)