cdcooley Posted April 26, 2014 Share Posted April 26, 2014 I use this (jQuery-based) code in a userscript for the Tracking Centre page to highlight the date on mods that have been updated since I last downloaded them. Something like that might be useful to others too. $(".trackedmod-list").find("span.last-download-tracking").each(function() { if (Date.parse(this.textContent) < Date.parse(this.previousElementSibling.textContent)) this.previousElementSibling.style.color = "yellow" })Would it be possible to add the delete buttons directly on the main tracking page and ditch the "Managed Tracked Files" page entirely? Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now