From 9dc68e90297d2d357a2eeec8906e5571a4619e0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Szopi=C5=84ski?= Date: Thu, 16 Jul 2020 13:52:58 +0200 Subject: [PATCH] Add more exceptions --- background.js | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/background.js b/background.js index cefa8c1..651983f 100644 --- a/background.js +++ b/background.js @@ -1,6 +1,16 @@ const oldReddit = "https://old.reddit.com"; -const excludedSubdomains = ["blog.reddit.com", "oauth.reddit.com", "out.reddit.com"]; -const excludedPaths = ["/poll", "/gallery", "/rpan", "/settings"]; +const excludedSubdomains = [ + "blog.reddit.com", + "mod.reddit.com", + "oauth.reddit.com", + "out.reddit.com"]; +const excludedPaths = [ + "/chat", + "/gallery", + "/poll", + "/rpan", + "/settings", + "/topics"]; chrome.webRequest.onBeforeRequest.addListener( function(details) {