You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
scripts/javascript/USPS-CollapseTracking.js

18 lines
515 B

// ==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');
})();