Greasy Fork is available in English.
知乎一秒直跳网盘
当前为
// ==UserScript==
// @name 知乎直跳网盘
// @namespace https://weibo.com/u/2792334661
// @version 0.1
// @description 知乎一秒直跳网盘
// @author 萝卜
// @match https://link.zhihu.com/?target=https%3A//306t.com/file/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
let url = document.getElementsByClassName("link")[0].innerText
window.location.href=url
})();