I have been looking for 2 days how to make a chrome extension, which, through the background page, navigates to a remote page (e.g "http://hotmail.com") and wich uses events dispatcher to go somewhere, check mails, check posts on a forum, etc ..
I've looked inside google mail checker extension, I saw that the extensions simply use a XMLHttpRequest() and evaluate the result. But the result is a prepared xml document that contains only informations like "mail:" "subject" "date:" "3" etc.. So under no circumstances it evaluate a html page, dispatch events and go another page ..
So I wonder if it's possible, I've tried including an iframe through document.createElement() and document.body.appendChild() but I have an error message: "Refused to display document because display forbidden by X-Frame-Options." whereas I put "permissions": [ ":///*" ] in the manifest file.