It might be possible, but it's most certainly tedious. Shipped JavaScript usually is minified if not uglified, which means it's pretty damn hard to read as a human. If you're lucky, there is some mapping included which allows browsers to display a more debugging friendly version - as it seems to be the case with this very website: https://imgur.com/a/M3d5bpG
If you're going for it anyway though, you'll have to read the website's code to find the relevant function (either the one doing the reload or the one declaring the timer I'd say). If you're lucky, there is an ordinary global variable declaring the starting value of the countdown. In the console tab of the developer tools, you're able to define JavaScript of your own. I believe it should be possible to copy the existing function definition from the page, paste it there (there is also a multiline editor in Firefox nowadays), and delete what annoys you. If I'm not wrong, this could "shadow" the page's definition of the function, leaving you without the annoyance.