Skip to content

Instantly share code, notes, and snippets.

@LuxXx
Created November 2, 2017 11:29
Show Gist options
  • Save LuxXx/24078b1b3db46fb425baf6efadff723e to your computer and use it in GitHub Desktop.
Save LuxXx/24078b1b3db46fb425baf6efadff723e to your computer and use it in GitHub Desktop.
Mintos Show Profit JS Script
// ==UserScript==
// @name Mintos
// @namespace Mintos
// @include https://www.mintos.com/*
// @version 1
// @grant none
// ==/UserScript==
$(document).ready(function() {
let profit = $("#mintos-boxes")[0].childNodes[1].childNodes[0].childNodes[1].childNodes[0].childNodes[5].childNodes[1].childNodes[0].data;
document.title = profit + " | " + document.title;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment