mirror of
https://github.com/iamadamdev/bypass-paywalls-chrome
synced 2025-06-12 18:37:37 +02:00
Minor WSJ bypass optimization, update README
This commit is contained in:
@ -155,7 +155,7 @@ chrome.runtime.onInstalled.addListener(function (details) {
|
||||
|
||||
// WSJ bypass
|
||||
chrome.webRequest.onBeforeRequest.addListener(function (details) {
|
||||
if (!isSiteEnabled(details)) {
|
||||
if (!isSiteEnabled(details) || details.url.indexOf("mod=rsswn") !== -1) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user