您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
贴吧昵称掩盖了真实ID,认不出人了?这个脚本适合你
当前为
// ==UserScript== // @name 贴吧显示真实ID // @version 0.5 // @namespace https://github.com/8qwe24657913 // @description 贴吧昵称掩盖了真实ID,认不出人了?这个脚本适合你 // @author 8qwe24657913 // @match http://tieba.baidu.com/* // @match https://tieba.baidu.com/* // @run-at document-start // @grant none // ==/UserScript== (function() { 'use strict'; // add css var css = ` @keyframes showUserName { from { clip: rect(1px, auto, auto, auto); } to { clip: rect(0px, auto, auto, auto); } } .frs-author-name:not(.shownUN), .p_author_name:not(.shownUN), .userinfo_username:not(.shownUN), #j_u_username .u_ddl_con_top > ul:not(.shownUN) { animation-duration: 0.001s; animation-name: showUserName; } .card_userinfo_title .userinfo_username, .card_userinfo_title .userinfo_username:hover { max-width: max-content!important; } .userinfo_username + div[style]:not([class]):not([id]), img[src="//tb1.bdstatic.com/tb/cms/nickemoji/nickname_sign.png"] { display: none!important; } `; var style = document.createElement('style'); style.appendChild(document.createTextNode(css)); document.documentElement.appendChild(style); // add setting var setting = localStorage.showUNSetting || '${un} (${nickname})'; function changeSetting() { var newSetting = prompt('${un}表示真实ID,${nickname}表示昵称', setting); if (newSetting && newSetting !== setting) { localStorage.showUNSetting = newSetting; location.reload(); } } // main document.addEventListener('animationstart', function(event) { // shouldn't use jQuery, bacause it may not be loaded if (event.animationName !== 'showUserName') return; var target = event.target; target.classList.add('shownUN'); if (target.nodeName === 'UL') return $('<li class="u_showUN"><a href="javascript:">显ID设置</a></li>').on('click', changeSetting).appendTo(target); // jQuery is loaded here var node = target, un; while (node && !node.hasAttribute('data-field')) node = node.parentElement; if (node) { un = JSON.parse(node.getAttribute('data-field')).un; } else if (typeof PageData === 'object' && PageData.product === 'ihome') { // ihome un = target.nextElementSibling.getAttribute('data-username'); } else { return console.error('贴吧显示真实ID: 找不到真实ID', target); } var nickname = target.innerHTML.replace(/^<div[^>]*>(.*)<\/div>$/, '$1').replace(/<img src="\/\/tb1\.bdstatic\.com\/tb\/cms\/nickemoji\/nickname_sign\.png"[^>]*>/, ''); if (nickname !== un) target.innerHTML = setting.replace(/\${un}/g, un).replace(/\${nickname}/g, nickname); }, false); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址