-
Last version of tampermonkey [https://www.tampermonkey.net/] script : https://pastebin.com/GkvLgsz9
// ==UserScript== // @name Reddit VO // @namespace http://tampermonkey.net/ // @version 1.0 // @description Supprime l'argument ?tl=fr des URLs de Reddit // @author Ja_Shi // @match *://*.reddit.com/* // @grant none // ==/UserScript== (function() { 'use strict'; let url = new URL(window.location.href); if (url.searchParams.has('tl')) { url.searchParams.delete('tl'); window.history.replaceState(null, '', url); window.location.reload(); } })();
Last active
July 6, 2025 11:33
-
-
Save StudioEtrange/f508642bdffdd45576bbe7dc2472f291 to your computer and use it in GitHub Desktop.
Reddit no automatic translation / show original
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment