0

我有一个与 iframe 链接的简单 chrome 扩展。src 指向具有各种子页面的域。当用户单击 iframe 并且面板消失时。src 被遗忘,一旦重新激活,它会重新加载原始 src 而不是用户上次离开的页面。是否可以通过 javascript 保存 iframe src 并为用户更新?

清单.json

{
"name": "Test",
"version": "1",
"manifest_version": 2,
"browser_action":{
"default_icon":"icon.png",
"default_popup":"popup.html",
"default_title": "Test"
}
}

popup.html

<html lang="en" dir="ltr">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<body style="padding:0; margin:0;"><iframe style="padding:0; margin:0;" width="315"height="306" src="http://www.example.com"></iframe>
</body>
</html>
4

0 回答 0