Disabling/Enabling Feature Requests
Described here is how to disable or enable the feature requests.
You can completely prevent any feature request related features from displaying by disabling it using the API below.
//Enable
cordova.plugins.featureRequests.setEnabled(true, successCb, errorCb)
//Disable
cordova.plugins.featureRequests.setEnabled(false, successCb, errorCb)
Updated about 5 years ago