From 146a773f60c8f100a00b6af1cfc2119cb7f38c32 Mon Sep 17 00:00:00 2001 From: James Shubin Date: Tue, 12 Jun 2018 03:28:53 -0400 Subject: [PATCH] add redirect for pay.reddit.com as well This is another prefix that is commonly used across reddit. --- background.js | 1 + 1 file changed, 1 insertion(+) diff --git a/background.js b/background.js index da3b802..5cf81b6 100644 --- a/background.js +++ b/background.js @@ -10,6 +10,7 @@ chrome.webRequest.onBeforeRequest.addListener( "*://www.reddit.com/*", "*://np.reddit.com/*", "*://new.reddit.com/*" + "*://pay.reddit.com/*" ], types: ["main_frame", "sub_frame", "stylesheet", "script", "image", "object", "xmlhttprequest", "other"] },