// ==UserScript== // @name Collapse USPS Tracking // @namespace https://usps.com // @version 1.0 // @description Collapses the tracking options on the USPS tracking page // @author WTMike24 // @match https://tools.usps.com/go/TrackConfirmAction?tRef=fullpage* // @grant none // ==/UserScript== (function() { 'use strict'; // Your code here... $(".see-all.show-less.tracking-result-collapser")[0].click(); $('html, body').animate({scrollTop: 0}, 'slow'); })();