Currently going through a mandatory slideshow on Chrome browser for work. Each page has a 15-20 minute timer (despite the fact that it's literally 3 sentences..) and a quiz at the end. You can't access the quiz until the timer expires, and if you get any answers wrong, the timer resets. It also sometimes will log you out randomly and reset your progress as well.
I have tried just about everything in console to end the timeout/interval. It seems the site is using a 3rd party plugin for the scripts called TwoSeven. The timeout/interval id is hidden. I attempted using console to stop all timeouts/intervals (there were some other answers on here that worked for others, but it did nothing on my end unfortunately). Here is some of the code below from the top of the page.
<div class="aspNetHidden">
<div class="aspNetHidden">
<input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="2A4A12CB" />
<input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION" value="/wEdAAIzip3nQX6++VkOzXNoiNlJ/l9Cy33scqUpSkO+xruGfoR7wugYYJKts8GOi6HkxV8DpGFOAoCm2WS3P87x5Q0h" />
</div>
And here's what looks to be the code keeping track of time? Was unable to edit this successfully.
(function() {
window.twosevenHmsToSecondsOnly = function(str) {
var p = str.split(':'),
s = 0, m = 1;
while (p.length > 0) {
s += m * parseInt(p.pop(), 10);
m *= 60;
}
return s;
};
})();
I am pretty unfamiliar with HTML/javascript, but this is wasting so much of my time I am pretty desperate. Thanks for any help!