Insert CSS in inApp Browser- Hide URL and Color of Address bar

I want to Hide URL and change the color of URL bar with Close button, Help me out

if(ext == 'jpg' || ext == "jpeg" || ext == "png")
      this.platform.ready().then(() => {
        this.iab.create(url, "_self");
      });
1 Like

The 3rd options parameter will enable you to do this - see the InappBrowser plugin documentation for details:

this.iab.create(url, "_self", "hideurlbar=yes,closebuttoncolor=#00ff00");