From 7b974bd31af18b4e8da0caae2ec136b562a4e908 Mon Sep 17 00:00:00 2001 From: Ben Nelson Date: Fri, 9 Jul 2021 22:31:46 -0500 Subject: [PATCH] Exclude '/community-points' path Exclude this path because it 404s in old reddit. --- background.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/background.js b/background.js index 3fe0790..a1e4115 100644 --- a/background.js +++ b/background.js @@ -1,5 +1,5 @@ const oldReddit = "https://old.reddit.com"; -const excludedPaths = ["/gallery", "/poll", "/rpan", "/settings", "/topics"]; +const excludedPaths = ["/gallery", "/poll", "/rpan", "/settings", "/topics", "/community-points"]; chrome.webRequest.onBeforeRequest.addListener( function (details) {