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 Add WF offers | |
| // @namespace http://tampermonkey.net/ | |
| // @version 2025-08-16 | |
| // @description - _- | |
| // @author Art Chen | |
| // @match https://web.secure.wellsfargo.com/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=wellsfargo.com | |
| // @grant none | |
| // ==/UserScript== |
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 Add USBank offers | |
| // @namespace http://tampermonkey.net/ | |
| // @version 2025-10-12 | |
| // @description - _- | |
| // @author Art Chen | |
| // @match https://onlinebanking.usbank.com/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=usbank.com | |
| // @grant none | |
| // ==/UserScript== |
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
| [Net.ServicePointManager]::SecurityProtocol = [Net.ServicePointManager]::SecurityProtocol -bor [Net.SecurityProtocolType]::Tls12 | |
| Add-Type -AssemblyName System.Web | |
| $ProgressPreference = 'SilentlyContinue' | |
| Write-Output "Preparing to extract Reverse: 1999 Summon URL from memory..." | |
| $processName = "reverse1999" | |
| $process = Get-Process -Name $processName -ErrorAction SilentlyContinue |
OlderNewer