$cordovaInAppBrowser.open not work on my physical device

$cordovaInAppBrowser.open not work on my physical device in opening another browser tab runs but when tested with a physical device or the emulator I click does absolutely nothing and hope you can help me this is the code
var options = {
location: ‘no’,
clearcache: ‘no’,
toolbar: ‘no’
};

$cordovaInAppBrowser.open(‘https://www.facebook.com/tuzonasoft2016/’, ‘_blank’, options)
.then(function(event) {
// success
})
.catch(function(event) {
// error
});