Stackoverflowを見回してみましたが、特にこれに特化したものは見つかりませんでした。
つまり、基本的に、次のようなWebサイトの共有ページがあります。
http://domain.com/share.php?link=http://sharing.url
私の拡張機能は次のようになります。
{
...
"browser_action": {
"default_icon": "icon.ico",
"default_popup": "schare.html"
}
...
}
schare.html:
<style>
body, html{
margin:0;
padding:0;
}
iframe{
width:520px;
height:200px;
margin:0;
}
</style>
<iframe id="iframes" frameborder="0"></iframe>
<script type="text/javascript" src="popup.js"></script>
およびpopup.js:
document.getElementById("iframes").setAttribute("src", "http://domain.com/share.php?link="+location.href+"");
しかし、それは間違ったURLです。あまり凝ったことをせずに、どうすればタブのURLをそこに入れることができますか?