Skip to content

Commit

Permalink
Merge pull request #256 from zacharyliu/fix-csp
Browse files Browse the repository at this point in the history
Fix missing quotes in CSP header overrides
  • Loading branch information
Yomguithereal authored Nov 18, 2016
2 parents 34aceeb + fa65b55 commit 4e31db1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chrome/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
o.value =
"default-src *;" +
"script-src * 'unsafe-inline' 'unsafe-eval';" +
"connect-src * 'unsafe-inline' 'unsafe-eval;" +
"style-src * 'unsafe-inline;";
"connect-src * 'unsafe-inline' 'unsafe-eval';" +
"style-src * 'unsafe-inline';";
}

return {
Expand Down

0 comments on commit 4e31db1

Please sign in to comment.