小黑盒分享链接自动跳转
// ==UserScript==
// @name 小黑盒分享链接自动跳转
// @namespace http://tampermonkey.net/
// @version 1.0
// @description 自动将小黑盒APP分享链接跳转为网页版帖子链接
// @author Voemp
// @match https://api.xiaoheihe.cn/v3/bbs/app/api/web/share*
// @icon https://www.google.com/s2/favicons?sz=64&domain=xiaoheihe.cn
// @grant none
// ==/UserScript==
(function() {
'use strict';
// 解析URL参数
const queryParams = new URLSearchParams(window.location.search);
const linkId = queryParams.get('link_id');
if (linkId) {
// 构建目标地址
const targetURL = `https://www.xiaoheihe.cn/app/bbs/link/${linkId}`;
// 使用replace避免产生历史记录
window.location.replace(targetURL);
} else {
console.log('未找到link_id参数');
}
})();