@jeffcliff @kirby @valere every time I land on a piped instance it complains about javascript. I actually have this tamper monkey user script I use to make it so when people post youtube, twitter, or other supported links I get a redirect from farside.
// ==UserScript== // @name Privacy Redirect // @namespace http://tampermonkey.net/ // @version 1.0 // @description try to take over the world! // @author You // @match http*://*/* // @grant none // @run-at document-end // ==/UserScript== (function () { 'use strict' const https = /^(?:https?:\/\/)/ const re = /(www\.)?(?:imdb|imgur|instagram|medium|odysee|quora|reddit|tiktok|translate|twitter|wikipedia|youtu\.?be)\.?(?:com|co|net|au|de)?/ const farside = 'https://farside.link' setInterval(function() { for (const e of document.querySelectorAll('a')) { if (https.test(e.href)) { const { hostname } = new URL(e.href) if (re.test(hostname)) e.href = `${farside}/${e.href}` } } }, 500) })();076萌SNS is a social network, courtesy of 076. It runs on GNU social, version 2.0.2-beta0, available under the GNU Affero General Public License.
All 076萌SNS content and data are available under the Creative Commons Attribution 3.0 license.