| Index: lib/csp.js |
| diff --git a/lib/csp.js b/lib/csp.js |
| index d4e8ac3b7cdb7b1bc3163601adb45dc3afcfc9c3..8c0406d0bbd91ffd35b8cfb89ce8bd84230e135e 100644 |
| --- a/lib/csp.js |
| +++ b/lib/csp.js |
| @@ -43,7 +43,8 @@ chrome.webRequest.onHeadersReceived.addListener(details => |
| // |
| // "http:" also includes "https:" implictly. |
| // https://www.chromestatus.com/feature/6653486812889088 |
| - value: "connect-src http:; child-src http:; frame-src http:; object-src http:" |
| + value: "connect-src http:; child-src http:; " + |
| + "frame-src http:; object-src http:" |
| }); |
| return {responseHeaders: details.responseHeaders}; |
| } |