you can even find one of these warnings on the google home page.
Resource interpreted as Image but transferred with MIME type text/html.
It just means that a resource was sent from the server to the client(browser) as one thing, but the client determined that it was something else.
In your case, the browser correctly determined that the jsonp string was a script and not a json application.
-- Kevin