diff options
author | Simon Brazell <simon@brazell.com.au> | 2021-01-10 12:04:39 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-10 12:04:39 +1100 |
commit | c442c3e74bc181ca05fc510b7fcd05117ddd1afc (patch) | |
tree | 74df61c8ee873d604bcc8b03c6e67d8e184d4e08 | |
parent | Merge pull request #150 from Frank3K/compress-images (diff) | |
parent | Added more instances of teddit and libreddit (diff) | |
download | libredirect-c442c3e74bc181ca05fc510b7fcd05117ddd1afc.zip |
Merge pull request #153 from somoso/patch-1
Add support for libredd.it
-rw-r--r-- | background.js | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/background.js b/background.js index a346e1a0..6fdce2d7 100644 --- a/background.js +++ b/background.js @@ -111,8 +111,17 @@ const redditDomains = [ ]; const redditBypassPaths = /\/(gallery\/poll\/rpan\/settings\/topics)/; const oldRedditViews = [ - "https://teddit.net", // privacy + // teddit: privacy w/ old UI + "https://teddit.net", + "https://teddit.ggc-project.de", + "https://teddit.kavin.rocks", "https://snew.notabug.io", // anti-censorship + // libreddit: privacy w/ modern UI + "https://libredd.it", + "https://libreddit.spike.codes", + "https://libreddit.kavin.rocks", + "https://libreddit.insanity.wtf", + "https://libreddit.dothq.co", "https://old.reddit.com", // desktop "https://i.reddit.com" // mobile ]; |