Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
单击扩展程序图标时,我希望弹出窗口打开几秒钟然后消失。
默认行为是单击页面上的任何其他位置后弹出窗口将消失。
当用户在弹出窗口外部单击时,您无法阻止弹出窗口关闭。但是,您可以随时关闭弹出窗口。
window.close()在你的使用popup.html
window.close()
popup.html
setTimeout(function () { window.close(); }, fewSeconds);
如果您想将此功能内嵌在弹出窗口中,则必须放宽内容安全策略。你最好把它放在一个外部文件中供你的弹出窗口获取。