extension-js / extension.js

🧩 Plug-and-play, zero-config, cross-browser extension development tool.
https://extension.js.org
MIT License
3.46k stars 80 forks source link

Creating window with more than one url leads to error #112

Closed TheUnsleepingAlchemist closed 1 week ago

TheUnsleepingAlchemist commented 1 week ago

both will leads to error:

chrome.windows.create({url:["https://www.google.com/"]})
chrome.windows.create({url:["https://www.google.com/","https://www.google.com/"]})

image

error doesn't show up while trying to create a window with string

this one will work fine:

chrome.windows.create({url:"https://www.google.com/"})

I used version 1.7.0 with --template=chatgpt

cezaraugusto commented 1 week ago

Hi @TheUnsleepingAlchemist thanks a lot for reporting!

I created #117 to address this one

cezaraugusto commented 1 week ago

@TheUnsleepingAlchemist fixed in extension@1.8.0, please update!

I'm closing this one, please feel free to open it again in case I'm wrong. Thanks!