Using the following code:
var xhr = new XMLHttpRequest();
xhr.open('GET', url, false);
Yields the following error:
Uncaught InvalidAccessError: Failed to execute 'open' on 'XMLHttpRequest': Synchronous requests are disabled for this page.
Is it simply not possible, or am I doing it wrong? Do I need extra permissions?