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
|
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 |
||||
|
|
|
A friend answers to my question. First, you've to set the permissions for the tab API :
And to store the URL :
|
|||||||||||
|
|
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:
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:
|
|||
|
|
I wanted to update this answer, as the API has changed. The
This still requires that you request access to the
You can read more about the deprecation here: chrome.tabs.getSelected() Hope this helps! |
|||||||||
|
|
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 |
|||
|
|