With regard to the specific permission you refer to, this is not available in any of the _AddPermisdions groups.
In a previous thread, Dave suggested you look at
https://stackoverflow.com/questions/33114063/how-do-i-properly-fire-action-request-ignore-battery-optimizations-intent
If comments in that thread are correct, you do not need that permission and indeed Google Play will remove your app if you try to request it.
The suggested workaround is to talk the user through adding your app to the list of apps that are allowed to ignore the settings.
You can send them to the relevant Settings page using the following code:
var action = 'android.settings.IGNORE_BATTERY_OPTIMIZATION_SETTINGS'
app.SendIntent(null, null, action);