主 题:Telegram链接重定向到第三方客户端油猴脚本
发 布 者:bttu
标签分类: 技术
时 间:2026-08-30 12:11:48
内容预览:// ==UserScript==// @name TG链接重定向到第三方客户端// @namespace http://tampermonkey.net/// @version 1.0// @description 自定义重定向 t.metelegram.me 链接到指定的第三方客户端// @author You// @match *://t.me/*// @match *://telegram.me/*// @match *://*/*// @grant GM_registerMenuCommand// @grant GM_setValue// @grant GM_getValue// @run-at document-start// ==/UserScript==(function() { 'use strict'; // 预设支持的客户端协议列表 const CLIENTS = { 'sg': { name: 'Swiftgram (sg://)', scheme: 'sg' }, 'lingo': { name: 'Lingo 专属 (lingo://)', scheme: 'lingo' }, 'tg': { name: 'Telegram / Turrit / Lingo (tg://)', scheme: 'tg' }, 'turrit': { name: 'Turrit 专属 (turrit://)', scheme: 'turrit' }, 'nekogram': { name: 'Nekogram (neko://)',
直达链接: https://www.nodeseek.com/post-901467-1
 
 
Back to Top