this.window.location.href
is not working in chrome extension
in the html file i tried this function in the script:
function myFunction()
{
var pl = this.window.location.href;
var sWords= localStorage.getItem(pl);
document.write(pl);
}
and it gives me:
chrome-extension://ebeadbfnnghmakkbimckpdmocjffkbjc/popup.html
so what i should do to get the link of the page?