pretty sure his browser variable comes from the Ionic docs:
```
import { InAppBrowser } from '@ionic-native/in-app-browser';
constructor(private iab: InAppBrowser) { }
...
const browser = this.iab.create('https://ionicframework.com/');
browser.executeScript(...);
browser.insertCSS(...);
browser.on('loadstop').subscribe(event => {
browser.insertCSS({ code: "body{color: red;" });
});
browser.close();
```
[ Full content available at:
https://github.com/apache/cordova-plugin-inappbrowser/issues/279 ]
This message was relayed via gitbox.apache.org for [email protected]