Playpower Games DebuggerDebugger for modifying apps settings by providing custom json at /debugger.json of current app.
Example debugger.json https://gist.github.com/nil1511/9f6b7b7d8196fc2714ec73d50db54a91
To Receive Updates from app
window.addEventListener('modelUpdated', function(evt) {
console.log('in app',evt['detail']); //evt['detail'] will contain tab,modelName,value as in json
}, false);
To Send Updated to debugger
window.postMessage({ type: 'updateModel', tab:'State Info', modelName:'frequency1000', value:'1000 Frequency' }, "*");