Skip to content

Instantly share code, notes, and snippets.

@TimonPeng
Last active July 31, 2023 17:27
Show Gist options
  • Save TimonPeng/db0d50ac60b5743825c1d494940fbcaf to your computer and use it in GitHub Desktop.
Save TimonPeng/db0d50ac60b5743825c1d494940fbcaf to your computer and use it in GitHub Desktop.
UOB Personal Internet Banking Anti Scam Modal Auto Clicking
// ==UserScript==
// @name UOB PIB Anti Scam Modal Auto Clicking
// @namespace https://timonpeng.com/
// @version 1.0
// @description UOB Personal Internet Banking Anti Scam Modal Auto Clicking.
// @author Timon
// @match https://pib.uob.com.sg/PIBCust/1FA/processSubmit.do*
// @icon https://pib.uob.com.sg/favicon.ico
// @require none
// @grant none
// @updateURL https://gist.githubusercontent.com/TimonPeng/db0d50ac60b5743825c1d494940fbcaf/raw/tampermonkey.js
// ==/UserScript==
(function () {
"use strict";
$(document).ready(function () {
if ($("#campaign-id").text().includes("ANTISPAM")) {
triggerShrt(this, "AES01");
}
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment