Skip to content

Instantly share code, notes, and snippets.

@Amzd
Last active April 25, 2019 15:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Amzd/8e41bc262c453e48bf987d3a2155b314 to your computer and use it in GitHub Desktop.
Save Amzd/8e41bc262c453e48bf987d3a2155b314 to your computer and use it in GitHub Desktop.
DONT USE WITH MY OTHER SCRIPT. Only shows 2v2 and 3v3 rank using css on https://rocketleague.tracker.network/live
// ==UserScript==
// @name Tracker Network 2s, 3s
// @namespace https://rocketleague.tracker.network
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://rocketleague.tracker.network/live*
// @grant GM_addStyle
// @run-at document-start
// @require http://code.jquery.com/jquery-3.3.1.min.js
// ==/UserScript==
GM_addStyle ( `
.stat-group, .small-stats {
display: none !important;
}
.large-stats > .rank-stat:nth-child(4) ~ .rank-stat {
display: none !important;
}
.large-stats > .rank-stat:nth-child(3), .large-stats > .rank-stat:nth-child(1) {
display: none !important;
}
.large-stats > .rank-stat {
width: 50% !important;
margin: 0 !important;
padding: 5px 0px;
}
.highcharts-container, .highcharts-root {
margin: auto !important;
width: 100% !important;
}
.trn-livetracker-wrapper > .content > div {
width: 25% !important;
float: left;
padding: 0px 5px;
}
` );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment