Hello,
I'm trying to use the visualization API from within a chrome extension using manifest version 2, which has stricter restrictions on resources that can be loaded. I'm doing:
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script>
google.load('visualization', '1', {
packages: ['corechart', 'geochart'],
callback : function() {
handleChartsLoaded();
}
});
</script>
...and I'm getting these errors in the console:
How do I force https resources to be loaded?
Thanks,
George