diff --git a/4chan_x.user.js b/4chan_x.user.js index 23e7df15f..e704c5dab 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -3660,8 +3660,14 @@ case 'k': case 'sci': return "https://archive.installgentoo.net/" + board + "/" + mode + "/" + id; + case 'cgl': + case 'mu': + case 'w': + return "http://archive.rebeccablacktech.com/" + board + "/" + mode + "/" + id; case 'x': return "http://archive.xfiles.to/" + board + "/" + mode + "/" + id; + case 'e': + return "https://md401.homelinux.net/4chan/cgi-board.pl/" + board + "/" + mode + "/" + id; default: if (mode === 'thread') { return "//boards.4chan.org/" + board + "/"; diff --git a/changelog b/changelog index aff6720a5..735093a3c 100644 --- a/changelog +++ b/changelog @@ -1,4 +1,6 @@ master +- Mayhem + Add /cgl/, /e/, /mu/ and /w/ archive redirection. 2.31.2 - Mayhem diff --git a/script.coffee b/script.coffee index 7860ffb76..28140719e 100644 --- a/script.coffee +++ b/script.coffee @@ -2782,8 +2782,12 @@ Redirect = "http://fuuka.warosu.org/#{board}/#{mode}/#{id}" when 'diy', 'g', 'k', 'sci' "https://archive.installgentoo.net/#{board}/#{mode}/#{id}" + when 'cgl', 'mu', 'w' + "http://archive.rebeccablacktech.com/#{board}/#{mode}/#{id}" when 'x' "http://archive.xfiles.to/#{board}/#{mode}/#{id}" + when 'e' + "https://md401.homelinux.net/4chan/cgi-board.pl/#{board}/#{mode}/#{id}" else if mode is 'thread' "//boards.4chan.org/#{board}/"