Tips and tricks
Javascript - How to watch property change on object or window
you can put this in DevTools console:
// overwrite with accessor
Object.defineProperty(window, 'FORMID', {
get: function () {
return window._FORMID;
},
set: function (value) {
debugger; // sets breakpoint
window._FORMID = value;
}
});