I wasn't able to find one on the internet, so I figured I ought to whip up a quick and dirty bookmarklet for toggling the AdvAgg URL param. I couldn't find any other avenues to offer this, so I'm posting it here on the issue tracker as a miscellaneous feature request.

javascript:(function(){var loc = document.location.href,qs = document.location.search,regex_off = /\&?advagg=-1/,goto = loc;if(qs.match(regex_off)) {console.log('turn on');goto = loc.replace(regex_off, '');} else {console.log('turn off');qs = qs ? qs + '&advagg=-1' : '?advagg=-1';goto = document.location.pathname + qs;}window.location = goto;})();

Comments

mikeytown2’s picture

Status: Active » Needs review
StatusFileSize
new1 KB

Thinking about putting this in the readme file. Sound good?

jklmnop’s picture

StatusFileSize
new977 bytes

sounds great! i just realized that there are still some console.logs in there. they probably shouldn't be in there.

mikeytown2’s picture

Status: Needs review » Fixed

Patch #2 has been committed. Thanks!

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.