Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name Binance link futures
- // @namespace http://tampermonkey.net/
- // @version 0.1
- // @description Link to futures
- // @author Sminem Bitnada
- // @grant none
- // @include https://www.binance.com/en/futures/*
- // @include https://www.binance.com/br/futures/*
- // ==/UserScript==
- (function() {
- 'use strict';
- console.log("test");
- // Your code here...
- setTimeout(() => {
- $(".trade-history .kJqiXO").each(function(key, val) {
- var actual = $(val).parent();
- var html = "<a href='https://www.binance.com/en/futures/"+actual.text()+"' style='color: #fff;'>"+actual.html()+"</a>";
- actual.html(html);
- });
- }, 10000);
- })();
Advertisement
Add Comment
Please, Sign In to add comment