mirror of
https://github.com/iamadamdev/bypass-paywalls-chrome
synced 2025-04-30 03:44:26 +02:00
Fix for Chrome v72
This commit is contained in:
parent
8cbc00919c
commit
6ad8a88892
@ -1,4 +1,7 @@
|
||||
# Bypass Paywalls for Chrome
|
||||
|
||||
### 2019-02-02: The Wall Street Journal (wsj.com) bypass is currently not working. WSJ seems to have changed their algorithm.
|
||||
|
||||
### Installation Instructions
|
||||
**Google Chrome**:
|
||||
1. Download this repo as a ZIP from github.
|
||||
|
@ -240,7 +240,7 @@ chrome.webRequest.onBeforeSendHeaders.addListener(function(details) {
|
||||
return { requestHeaders: requestHeaders };
|
||||
}, {
|
||||
urls: ['<all_urls>']
|
||||
}, ['blocking', 'requestHeaders']);
|
||||
}, ['blocking', 'requestHeaders', 'extraHeaders']);
|
||||
|
||||
// remove cookies after page load
|
||||
chrome.webRequest.onCompleted.addListener(function(details) {
|
||||
|
@ -18,5 +18,5 @@
|
||||
"page": "options.html"
|
||||
},
|
||||
"permissions": [ "cookies", "<all_urls>", "storage", "webRequest", "webRequestBlocking"],
|
||||
"version": "1.3.9"
|
||||
"version": "1.4.0"
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user