I am currenttly developing a Chrome extension and i would like to store the url of a popup window into a string variable.
I am able to get the url via the "document.createElement and variable.appendChild methods, but I can't store it in a string.
This works :
function getLinks(){
var url = document.createElement("p");
chrome.tabs.query({windowType:"popup"}, function (tab){
for(x in tab){
var adresse= document.createTextNode(tab[x].url);
url.appendChild(adresse);
}
});
document.body.appendChild(url);
}
This does not work :
function getLinksbis(){
var url = "1 - ";
chrome.tabs.query({windowType:"popup"}, function (tab){
for(x in tab){
var adresse= tab[x].url;
url = url + adresse;
}
});
document.write(url);
}
Can you help me ? Is it possible to do what i want ? I want it in a string because I want to add parameters to this url and then shoot it back to the user.
Please excuse my english, I'm french. ;-)
Thanks.
