Introducing User Scripts
posted on Dec. 19, 2015, 6:41 p.m.
With the recent addition of Wikipedia-like user scripts, now you can change how the DMOJ looks and works! A user script is a small bit of customizable Javascript that is embedded into every page, and allows you to modify everything regarding the site's look. User scripts may be defined in the edit profile page.
For example, if you wanted to make the navigation bar non-sticky, you could use a simple script.
// Wait for page load
$(function() {
// Select the navigation bar
$("#navigation").css({
// Update the CSS
position: "absolute"
});
});
Or perhaps you'd prefer a more festive look to the site.
$(function() {
$("#page-container").css({background: "#FDDDDD"});
$("body").css({background: "#99FFA8"});
});
Or even display an encouraging message on every page load.
$(function() {
alert("You can do it!");
});
Comments
Is there a dark mode, I tried using User Scripts but it seems I can't change the text color
You could also try this Chrome extension: https://github.com/darkreader/darkreader
KevinLu
I am not sure is it just me or else. When i am viewing the problem list, i can't sort the problems according to their point value after clicking the "Points".
Thanks for noticing. The tablesorting plugin we used used
eval()
for multi-column sorting, which was denied by our recently-implemented Content-Security-Policy.I've switched to a fork of the plugin that removed the use of
eval()
, so everything should be working fine now.Yes, you can't do it on the users page as well.
Finally, someone has usurped our benevolent dictator FatalEagle in terms of DMOJ points!
Here, have Reddit silver to help celebrate this momentous occasion!