This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name CSGL Total Value | |
| // @version 0.1 | |
| // @match *://csgolounge.com/mybets | |
| // @grant none | |
| // ==/UserScript== | |
| function value(item) { | |
| return +item.querySelector('.value').textContent.slice(2); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Steam Mass Decline | |
| // @version 0.1 | |
| // @match *://steamcommunity.com/*/tradeoffers/ | |
| // @grant none | |
| // ==/UserScript== | |
| var controls = document.querySelector('.rightcol_controls_content'), | |
| button = controls.appendChild(document.createElement('div')), | |
| label = button.appendChild(document.createElement('span')); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Compact Fanobet | |
| // @version 0.4.8 | |
| // @match *://fanobet.com/* | |
| // @namespace http://steamcommunity.com/groups/whengabenisnthome/discussions/0/412447613581363837/ | |
| // @require https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.11.2/moment.min.js | |
| // @require https://cdnjs.cloudflare.com/ajax/libs/moment-timezone/0.5.0/moment-timezone-with-data.min.js | |
| // @require https://cdnjs.cloudflare.com/ajax/libs/ion-rangeslider/2.1.2/js/ion.rangeSlider.min.js | |
| // @run-at document-idle | |
| // @grant none |