How to auto stop bootstrap.js from auto clearing the console log?
One solution is to use unsafeWindow
instead of window
. Another one is to add // @grant none
, which will run the script in the page context, but you won't be able to use GM_
functions.
@wOxxOmMOD
// @grant GM_registerMenuCommand
// @grant GM_setValue
// @grant GM_getValue
// @grant window.close
// @run-at document-idle
This is the actual script and it can't be changed, but adding unsafewindow won't be a problem.
Thanks, that worked
None of the things I've tried worked.