html - Force close popup and re-open it Chrome Extension -


is there way force close chrome extension , after closing have automatically re-open it?

if want close popup window of extension, javascript code can close popup window forcibly.

window.close(); 

unfortunately, don't have ways open popup window of browseraction/pageaction. instead, can change tooltip text, badge text , background color chrome.browseraction/chrome.pageaction apis.

https://developer.chrome.com/extensions/browseraction https://developer.chrome.com/extensions/pageaction


Comments