Skip to content
This repository has been archived by the owner on Jul 26, 2020. It is now read-only.

Commit

Permalink
fix nytimes.com
Browse files Browse the repository at this point in the history
  • Loading branch information
nextgens committed Dec 10, 2017
1 parent a39dc0e commit 66344b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions background.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ function blockCookies(details) {

chrome.webRequest.onBeforeSendHeaders.addListener(evadePaywalls, {
urls: ["<all_urls>"],
types: ["main_frame"],
types: ["main_frame", "script"],
}, ["requestHeaders", "blocking"]);

chrome.webRequest.onHeadersReceived.addListener(blockCookies, {
urls: ["<all_urls>"],
types: ["main_frame"],
types: ["main_frame", "script"],
}, ["responseHeaders", "blocking"]);

0 comments on commit 66344b2

Please sign in to comment.