-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
  • 74,770
  • 16
  • 179
  • 206
SavaLLL
  • 39
  • 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
  • 868,454
  • 176
  • 1,908
  • 1,964
0

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

Siamak Ferdos
  • 3,181
  • 5
  • 29
  • 56