Terrasse 在 【小工具分享】快速跳转帖子的raw页面 中发帖
有时候我们需要查看帖子源码,我写了一个轻量的浏览器书签脚本,添加到书签工具栏后点击就会跳转。
javascript:(()=>{const TO_TOP=false;const u=new URL(location.href);const p=u.pathname.replace(/\/+$/,'');let m=p.match(/^\/t\/[^/]+\/(\d+)(?:\/(\d+))?/);if(!m)m=p.match(/^\/raw\/(\d+)(?:\/(\d+))?/);if(!m){alert('Not a Discourse topic/raw URL');return;}const tid=m[1],post=m[2];u.pathname=`/raw/${tid}${(!TO_TOP&&post)?`/${post}`:''}`;u.search='';u.hash...