0

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をそこに入れることができますか?

4

2 に答える 2

1

以下のコードは、現在のウィンドウにタブが 1 つだけではなく配列になっている場合、機能しない可能性があります。修正版はこちら

chrome.tabs.query({active : true, currentWindow: true}, function (tabs) { var tab = (tabs.length === 0 ? tabs : tabs[0]);
var activeTabUrl = tab.url; });

于 2013-01-25T15:56:00.920 に答える