| Index: lib/csp.js |
| diff --git a/lib/csp.js b/lib/csp.js |
| index 5621d87cdb336a57aaa6dc67a1f9878a57b577d2..0e8e4d236642e4e64249266e7ab4451468a3d06d 100644 |
| --- a/lib/csp.js |
| +++ b/lib/csp.js |
| @@ -46,7 +46,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:" |
|
Sebastian Noack
2017/03/29 17:14:15
I would align the strings here, so that they start
kzar
2017/03/30 07:20:46
Done.
|
| }); |
| return {responseHeaders: details.responseHeaders}; |
| } |