Minor WSJ bypass optimization, update README

This commit is contained in:
Adam
2019-02-10 15:14:18 -08:00
parent 1e7cf8ed56
commit 4b8bcc852f
3 changed files with 3 additions and 6 deletions

View File

@ -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;
}