微博直跳

微博跳转第三方页面不再等待

目前為 2020-09-04 提交的版本,檢視 最新版本

// ==UserScript==
// @name         微博直跳
// @namespace    https://weibo.com/u/5698313653
// @version      0.1
// @description  微博跳转第三方页面不再等待
// @author       @私聊话题废
// @match        *://t.cn/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    let url = document.getElementsByClassName("link")[0].innerText
    window.location.href=url
})();