parent
c8d6b06d9b
commit
82b7b835ba
@ -0,0 +1,17 @@
|
|||||||
|
// ==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');
|
||||||
|
})();
|
Loading…
Reference in new issue