Last active
June 14, 2017 14:00
-
-
Save bobby1030/98a083cd3bd345e06799c563d4559e48 to your computer and use it in GitHub Desktop.
停用玉山網銀 300 秒自動登出 - 瀏覽器腳本
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Esun Ebank disable auto logout countdown | |
// @namespace esun.disable.autologout | |
// @include https://ebank.esunbank.com.tw/* | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
setInterval(function(){ | |
document.getElementById('iframe1').contentWindow.$.iloginchecker().keepSession(); | |
}, 100000) | |
// Invoke every 100 seconds. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment