-1

My extension send GET request on my site(http). But Chrome recently started to block these requests, and show error :

The page at 'https://site' was loaded over HTTPS, but ran insecure content from 'http://MYsite/zz.php?id=116174676': this content should also be loaded over HTTPS.
VM93 content_script.js:16(anonymous function)

How do I fix this?

Xan
  • 71,217
  • 14
  • 165
  • 189
SavaLLL
  • 29
  • 4
  • Simply send the request to the HTTPS version of your website. If you don't have one you'll have to get one. – EWit Nov 02 '14 at 12:19

2 Answers2

0

As the error clearly states, you need to load your content over HTTPS.

SLaks
  • 837,282
  • 173
  • 1,862
  • 1,933
0

Search where in your code trying to access to http protocol, It should be https

Siamak Ferdos
  • 2,987
  • 4
  • 27
  • 53