Google Adwords CSP (content security policy) img-src

Unfortunately, there aren’t many ways around this. Resources require either whitelisting (in the case of remote resources, like this one) or inlining tricks (i.e. nonce or sha256-…) when CSP is active. At the end of the day, though, CSP can probably still make your site safer and protect most resources. Depending on what you are … Read more

How to track a Google Adwords conversion onclick?

Don’t know if you’ve already found it… I mention it anyway for future surfers… I was looking for the same, and found this piece of code : <script type=”text/javascript”> function trackConv(google_conversion_id, google_conversion_label) { var image = new Image(1, 1); image.src = “//www.googleadservices.com/pagead/conversion/” + google_conversion_id + “/?label=” + google_conversion_label + “&script=0”; } </script> Then for links … Read more