From 9cacda42f3790991c42e5acb5f5312e315588575 Mon Sep 17 00:00:00 2001 From: Tom Watson Date: Sat, 23 Jan 2021 14:41:43 +0100 Subject: [PATCH] don't redirect new.reddit.com This provides a useful workaround for viewing the new site if there is something broken on old.reddit.com (e.g. polls), as well as giving a way to just check something on the new site if you want to. Closes https://github.com/tom-james-watson/old-reddit-redirect/issues/44 Closes https://github.com/tom-james-watson/old-reddit-redirect/pull/28 Closes https://github.com/tom-james-watson/old-reddit-redirect/pull/27/files Closes https://github.com/tom-james-watson/old-reddit-redirect/issues/12 --- background.js | 1 - manifest.json | 1 - 2 files changed, 2 deletions(-) diff --git a/background.js b/background.js index c2888cb..5817b9f 100644 --- a/background.js +++ b/background.js @@ -18,7 +18,6 @@ chrome.webRequest.onBeforeRequest.addListener( "*://reddit.com/*", "*://www.reddit.com/*", "*://np.reddit.com/*", - "*://new.reddit.com/*", "*://amp.reddit.com/*", ], types: [ diff --git a/manifest.json b/manifest.json index b7c09c0..473c94a 100644 --- a/manifest.json +++ b/manifest.json @@ -14,7 +14,6 @@ "*://reddit.com/*", "*://www.reddit.com/*", "*://np.reddit.com/*", - "*://new.reddit.com/*", "*://amp.reddit.com/*" ] }