跳过从QQ打开 提示非官方链接

从QQ打开链接提示非官方,直接转跳

// ==UserScript==
// @name         跳过从QQ打开 提示非官方链接
// @namespace    https://space.bilibili.com/52159566
// @version      0.1
// @description  从QQ打开链接提示非官方,直接转跳
// @author       苏芣苡
// @match        *://c.pc.qq.com/*
// @icon         https://q.qlogo.cn/g?b=qq&s=100&nk=318328258
// @grant        none
// ==/UserScript==

(function() {
    var string = document.getElementById("url").innerHTML;
    var location = string.indexOf(">")+1;
    var len = string.length;
    var url = string.substring(location,len);
    window.location.href = url;
})();