`//
UserScript`
`// @name cat2fat`
`// @namespace
http://tampermonkey.net/``// @version 0.1`
`// @description redirect catbox to fatbox`
`// @author anon`
`// @match
https://www.voat.xyz/``// @match
https://www.upgoat.net/``// @grant none`
`//
/UserScript`
``
`(function () {`
` 'use strict';`
` var links = document.querySelectorAll('a,img,source');`
` if (links) {`
` links.forEach(s => {`
` if (s.href !== undefined && s.href.startsWith("
https://files.catbox.moe/")) {`
` s.href = s.href.replace('catbox', 'fatbox');`
` }`
` if (s.src !== undefined && s.src.startsWith("
https://files.catbox.moe/")) {`
` s.src = s.src.replace('catbox', 'fatbox');`
` if(s.parentNode.tagName === "VIDEO") {`
` s.parentNode.load();`
` }`
` }`
` });`
` }`
`})();`
Edit:
https://pastebin.com/wUvTicij
[ + ] Fascinus
[ - ] Fascinus 3 points 8 monthsSep 2, 2024 21:26:14 ago (+3/-0)
[ + ] rando
[ - ] rando [op] 2 points 8 monthsSep 2, 2024 21:15:57 ago (+2/-0)
[ + ] Kozel
[ - ] Kozel 3 points 8 monthsSep 2, 2024 21:23:29 ago (+3/-0)
[ + ] Kozel
[ - ] Kozel 5 points 8 monthsSep 2, 2024 21:23:50 ago (+5/-0)
[ + ] Fascinus
[ - ] Fascinus 3 points 8 monthsSep 2, 2024 21:24:54 ago (+3/-0)
[ + ] Kozel
[ - ] Kozel 4 points 8 monthsSep 2, 2024 21:25:22 ago (+4/-0)
https://files.catbox.moe/7m06xs.png
[ + ] Fascinus
[ - ] Fascinus 2 points 8 monthsSep 2, 2024 21:33:28 ago (+2/-0)
This is great!
Thanks again, OP!
[ + ] rando
[ - ] rando [op] 1 point 8 monthsSep 2, 2024 21:40:30 ago (+1/-0)