Greasy Fork is available in English.

Telegram to TGStat Redirector

Redirect t.me links to tgstat.com version

// ==UserScript==
// @name         Telegram to TGStat Redirector
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Redirect t.me links to tgstat.com version
// @author       w4t3r1ily
// @match        https://t.me/*
// @license      MIT
// @icon         https://upload.wikimedia.org/wikipedia/commons/thumb/8/82/Telegram_logo.svg/2048px-Telegram_logo.svg.png
// @grant        none
// ==/UserScript==

(function() {
    window.location = document.URL.replace("t.me/","tgstat.com/en/channel/@")
})();