I have a userscript where I'm using Tampermonkey to change a DOM element's text. This code
$(".widget-container_cimta_revenue_kpi_number").find('div.count')
.text('$50,000')
.css('fontSize', 24);
works fine in Chrome Dev Tools > Console Log as long as I set the "execution context" manually in the dropdown from "top" to "waveApexPage". see dropdown value for execution context
Is there a way to programmatically change the execution context value in this dropdown inside chrome dev tool? I believe it is the global execution context?