Launch Chrome App in Nexus 7 by Disabling Popup blocker

When i click a link in the Webpage in chrome browser it showing like the popup is blocked and i need to launch chrome browser by disabling the popup blocker when launching.

We used below code but it was not worked :
SelendroidCapabilities dc = new SelendroidCapabilities();
dc.setCapability(“automationName”, “Appium”);
dc.setCapability(“deviceName”, “Android”);
dc.setCapability(“browserName”, “Chrome”);
dc.setCapability(“platformName”, “Android”);
dc.setCapability(“disable-popup-blocking”,true);
driver=new RemoteWebDriver(new URL(“http://127.0.0.1:4723/wd/hub”),dc);