Me sale error cuando se crean algunas pestañas y quiero agruparlas. A pesar de que
Vea la parte // Error a continuación
.... var ids = []; myconfig.tabs.forEach((tab) => { chrome.tabs.create({ url: tab }).then((tt) => { ids.push(tt.id); }); }); ... // ids:Array - 0: 72, 1: 73 length: 2 chrome.tabs.group({tabIds:ids}).then((groupId) => { // ERROR : Error handling response: TypeError: Error in invocation of tabs.group(object options, optional function callback): Error at parameter 'options': Error at property 'tabIds': Value did not match any choice. gId = groupId; }); } });Por favor corríjanme para solucionar este error, gracias de antemano.
Csaba