I'm having fun Google Chrome extension and I just want to know how I can store the URL of the curent tab in a variable.

Maybe it's in the doc, but doesn't want to load :s

link|improve this question

feedback

3 Answers

up vote 22 down vote accepted

A friend answers to my question.

First, you've to set the permissions for the tab API :

"permissions": [
    "tabs"
]

And to store the URL :

chrome.tabs.getSelected(null,function(tab) {
    var tablink = tab.url;
});
link|improve this answer
The second part of code is for the case of a popup file – Axiol Dec 30 '09 at 11:38
The reason why its just for the popup (page action, browser action) is because your sending in a "null" into the first parameter. code.google.com/chrome/extensions/tabs.html#method-getSelected The docs state the first parameter is the windowId, if you want to use that in options, or background page, you would need to put in the window id or you will get the current tab your viewing which is undefined, options respectively. – Mohamed Mansour Dec 30 '09 at 17:06
yes it works, but not sure why chrome.tabs.getSelected method can not be found in the reference document. – swimmingfisher Apr 25 at 3:21
feedback

The problem is that chrome.tabs.getSelected is asynchronous. This code below will generally not work as expected. The value of 'tablink' will still be undefined when it is written to the console because getSelected has not yet invoked the callback that resets the value:

var tablink;
chrome.tabs.getSelected(null,function(tab) {
    tablink = tab.url;
});
console.log(tablink);

The solution is to wrap the code where you will be using the value in a function and have that invoked by getSelected. In this way you are guaranteed to always have a value set, because your code will have to wait for the value to be provided before it is executed.

Try something like:

chrome.tabs.getSelected(null, function(tab) {
    myFunction(tab.url);
});

function myFunction(tablink) {
  // do stuff here
  console.log(tablink);
}
link|improve this answer
Thanks for the code, this worked for me, "tabs" needs to be added to permissions in the manifest.json file "permissions": [ "tabs" ] – Pete Herbert Penito Apr 13 '11 at 15:45
feedback

Hi here is an Google Chrome Sample which emails the current Site to an friend. The Basic idea behind is what you want...first of all it fetches the content of the page (not interessting for you)...afterwards it gets the URL (<-- good part)

Additionally it is a nice working code example, which i prefer motstly over reading Documents.

Can be found here: Email this page

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.