修復 x.com(twitter)分享鏈接在Discord 或 Telegram 無法正確顯示 嵌入資訊的問題
首先會遇到這問題,主要是伺服器閱讀權限不足,所以無法正確讀取到限制讀取的文章 在 github 上有大佬修復使用了 Twitter API 並把訊息資料整合到了他的網域上修復了 此問題。 所以我們只要把 x 或是 twitter 的域名替換為大佬的就可以讓資訊正確顯示在Discord 或是Telegram 也就是只要把 x.com 或是 twitter.com 換成 fixvx.com 就好了。 相信大家也不會去記所以我做了個 暴力猴 的腳本 ==========分隔線========== // ==UserScript== // @name 把推特的文章時間改成複製fixvx網址 // @namespace http://tampermonkey.net/ // @version 0.2 // @description 修改鏈接的 href 並實現點擊後複製功能 // @author You // @match https://x.com/* // @match https://twitter.com/* // @grant GM_setClipboard // @grant GM_addStyle // ==/UserScript== (function() { 'use strict'; // 目標域名 const newDomain = 'https://fixvx.com'; // 通用函數來替換 URL 的域名 function replaceDomain(urlString, newDomain) { try { let url = new URL(urlString, window.location.origin); url.hostname = newDomain.replace(/^https?:\/\//, ''); return url.toString(); } catch (e) { console.erro...