Skip to content

Instantly share code, notes, and snippets.

@akost
Last active November 20, 2025 21:40
Show Gist options
  • Select an option

  • Save akost/b7c9e73e54bb6ba91547df5c3cc7be49 to your computer and use it in GitHub Desktop.

Select an option

Save akost/b7c9e73e54bb6ba91547df5c3cc7be49 to your computer and use it in GitHub Desktop.
Userscript: Add all deals to your Chase credit card
// ==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