How can I call an object's function in a script, such as opening a page in Browser?
I tried to access the browser object by
runtime.objects["browser"]
,but it is only a table object.
Develop games in your browser. Powerful, performant & highly capable.
You don't need to use Browser for this. In JavaScript it would just be a call to window.open().
window.open()