I created two extensions that uses native messaging to a the same host.
The native application manifest.json:
{
“name”: “tokennativewrapper”,
“description”: “native wrapper”,
“path”: “./resources/NativeWrapper.bat”,
“type”: “stdio”,
“allowed_extensions”: [
“abc@exmple.es”
]
}
How do I specify the two extensions in the allowed_extensions field?
Thanks
DaveRo
November 4, 2020, 5:20pm
2
Try:
“allowed_extensions”: [
“abc@exmple.es”,
“def@exmple.es”
]
That’s how you’d normally express an object array with two items.
I don’t know whether >1 allowed extension is valid, though.
I think this provides documentation of the answer @DaveRo suggested, and, although the example uses an array of length one, it appears that more than one is permitted.