>>16
BrowserPathの設定を、下記のようにプログラムパスと引数の区切りを<>, 引数の区切りを^^ に変更
C:\\Program Files\\Internet Explorer\\iexplore.exe<>$1^^引数^^引数
のようにして

args = args.split(" ").map(a => a.replace("$1", openURL));

args = args.split("^^").map(a => a.replace("$1", openURL));
に変えてみる