This problem even arises, when there is no server access whatsoever. index.html is just accessing some locally stored JavaScript file:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="timeline.js"></script>
</head>
<body>
<p>The Body</p>
</body>
</html>
When displayed in the browser, Chrome says:
Resource interpreted as Script but transferred with MIME type text/plain:
file:///D:/Workspace/timeline/examples/engel-timeline/timelineReusable.v0.0/timeline.js".
How can I suppress this message? (Adding a 'content-type' doesn't help!)