Skip to content

Instantly share code, notes, and snippets.

@artchen
artchen / add-wf-offers.user.js
Last active August 16, 2025 16:45
Add Wells Fargo Offers
// ==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==
@artchen
artchen / add-usbank-offers.user.js
Last active October 12, 2025 19:49
Add US Bank Offers
// ==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==
@artchen
artchen / re9-sum-url-ext.ps1
Created March 15, 2026 07:09
Extract reverse 1999 summon url
[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