Index: include.preload.js |
=================================================================== |
--- a/include.preload.js |
+++ b/include.preload.js |
@@ -33,7 +33,7 @@ |
{ |
// This element failed loading, did we block it? |
var url = element.src; |
- if (!url) |
+ if (!url || !/^https:/i.test(url)) |
kzar
2014/11/26 16:41:10
Shouldn't we also match HTTP as well as HTTPS here
Sebastian Noack
2014/11/26 16:53:13
Ouch, this was a typo.
kzar
2014/11/26 16:58:29
Easily done! Works for me now
|
return; |
ext.backgroundPage.sendMessage( |