Hi i3i2ain, I've made a small update on the plugin. Now you can trigger the click sound manually.
For example, for your case you can do:
<ion-item ng-click="clickSound()">
Click me with a clicky sound
</ion-item>
And in the controller:
$scope.clickSound = function () {
nativeclick.trigger();
}
Glad you find a solution anyway!