修复ddxs.cc书签跳转链接
// ==UserScript==
// @name 修复ddxs.cc书签链接
// @namespace http://www.zhangminghao.com
// @version 0.1
// @description 修复ddxs.cc书签跳转链接
// @author 张明浩
// @match https://www.ddxs.cc/*.html
// @exclude https://www.ddxs.cc/ddxs/*.html
// ==/UserScript==
(function() {
var url = window.location.href;
var arr=url.match(/\d*\/\d*\.html/)
var url="https://www.ddxs.cc/ddxs/" + String(arr)
window.location.replace(url)
})();