Hi,
After contacting , they told me that since they “force HTTPS, any external assets must be referenced by HTTPS. Or you can include them directly in the zip”
So I just opened my .html and replace http by https in the line 7,8 and 9 so I ended up with this:
<script src="http**s**://code.jquery.com/jquery-2.1.3.min.js"></script>
<script src="http**s**://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<link href="http**s**://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet">
And now my game load and launch.
Hope this can help you.