I tried to make an add-ons to send the URL of a website that I'm open,
function xxxx()
{
a = "mailto:xxx@xxxx.com?subject= xxxxxxxxxxxxxxxxxx" + document.title;
a += "&body=" + escape("url" + window.location.href);
window.location.href = a;
}
but that appears is
"chrome :/ / browser / content / browser.xul" << overlay in chrome.manifest
is there any solution or any other way to solve that problem?