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.
18 lines
515 B
18 lines
515 B
4 years ago
|
// ==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');
|
||
|
})();
|