Greasy Fork

NGA_parse_uid

uid转用户名

目前为 2018-01-18 提交的版本。查看 最新版本

// ==UserScript==
// @name         NGA_parse_uid
// @version      0.16
// @author       Inazuma
// @match        https://bbs.ngacn.cc/read.php*
// @match        https://bbs.nga.cn/read.php*
// @match        http://bbs.nga.cn/read.php*
// @match        http://bbs.ngacn.cc/read.php*
// @require      http://ajax.aspnetcdn.com/ajax/jquery/jquery-2.1.3.min.js
// @grant       none
// @namespace https://greasyfork.org/users/163468
// @description uid转用户名
// ==/UserScript==

let pattern = 'nuke.php?func=ucp&uid=';
$('a[href*="' + pattern + '"]').each(
    function(i, v){
        let uid = v.href.split(pattern)[1];
        $.post('/nuke.php?uid=' + uid + '&__output=12&__act=get&__lib=ucp', function(res) {
            v.innerText = res.result.username;
        });
    }
);

$('a[href="被禁止的链接"]').each(
    function(i, v){
        let link;
        if (v.parentNode.className !== 'nobr') {
            link = v.previousElementSibling.firstChild.innerText.replace(/<[^>]+>/g, '');
            v.setAttribute('href', link);
            v.innerText = v.innerText.replace(/被禁止的链接/g, link);
        } else {
            link = v.parentNode.parentNode.firstChild.innerText.replace(/<[^>]+>/g, '');
            v.setAttribute('href', link);
        }
    }
);