3

I'm new to chrome extension development. I have some questions: 1. I tried my best to set the width of popup.html to full screen. But, couldn't. Is there any way. 2. When I switch tab in chrome, the extension is closing. Is there any way to remain even when the focus is switched from the extension. 3. popup.html looks like hanging from the extension icon in the tool bar. Is it possible to detach from there.

1 Answers1

2

In popup code

chrome.windows.create({
    state: "fullscreen",
    url: location.url
})
tscpp
  • 1,298
  • 2
  • 12
  • 35