Last active
November 20, 2025 21:40
-
-
Save akost/b7c9e73e54bb6ba91547df5c3cc7be49 to your computer and use it in GitHub Desktop.
Userscript: Add all deals to your Chase credit card
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 Chase: Add all deals to your Chase credit card | |
| // @namespace http://tampermonkey.net/ | |
| // @version 2025-11-20 | |
| // @description Chase: Add all deals to your Chase credit card | |
| // @author Andrei K | |
| // @match https://secure.chase.com/web/auth/dashboard | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=chase.com | |
| // @grant none | |
| // ==/UserScript== | |
| (function() { | |
| 'use strict'; | |
| const elementsWithDataAttribute = document.querySelectorAll('[data-cy=commerce-tile]'); | |
| elementsWithDataAttribute.forEach(element => { | |
| element.click(); | |
| }); | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment