Open a Chrome pop-up while moving to a new page

I am developing a Google Chrome extension with a popup (this is a browser action) and it changes the location of the page, which causes the popup to disappear. How can I make it stay between page reloads?

+3
source share
3 answers

You can not. browserAction pop-ups close when any activity outside the pop-up window. You could use "Desktop Notifications . "

+3
source

, . , .

, , FAQ:

, ?

, , . , .

0

JavaScript Chrome active: false:

chrome.tabs.create({ url: "http://www.google.com", active: false });

0

All Articles