mirror of
https://github.com/iamadamdev/bypass-paywalls-chrome
synced 2025-05-01 06:24:28 +02:00
Fix for Chrome v72
This commit is contained in:
parent
8cbc00919c
commit
6ad8a88892
@ -1,4 +1,7 @@
|
|||||||
# Bypass Paywalls for Chrome
|
# 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
|
### Installation Instructions
|
||||||
**Google Chrome**:
|
**Google Chrome**:
|
||||||
1. Download this repo as a ZIP from github.
|
1. Download this repo as a ZIP from github.
|
||||||
|
@ -240,7 +240,7 @@ chrome.webRequest.onBeforeSendHeaders.addListener(function(details) {
|
|||||||
return { requestHeaders: requestHeaders };
|
return { requestHeaders: requestHeaders };
|
||||||
}, {
|
}, {
|
||||||
urls: ['<all_urls>']
|
urls: ['<all_urls>']
|
||||||
}, ['blocking', 'requestHeaders']);
|
}, ['blocking', 'requestHeaders', 'extraHeaders']);
|
||||||
|
|
||||||
// remove cookies after page load
|
// remove cookies after page load
|
||||||
chrome.webRequest.onCompleted.addListener(function(details) {
|
chrome.webRequest.onCompleted.addListener(function(details) {
|
||||||
|
@ -18,5 +18,5 @@
|
|||||||
"page": "options.html"
|
"page": "options.html"
|
||||||
},
|
},
|
||||||
"permissions": [ "cookies", "<all_urls>", "storage", "webRequest", "webRequestBlocking"],
|
"permissions": [ "cookies", "<all_urls>", "storage", "webRequest", "webRequestBlocking"],
|
||||||
"version": "1.3.9"
|
"version": "1.4.0"
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user