您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Shows "Who Posted" popup from a thread
// ==UserScript== // @name Show SDMB Who Posted // @namespace SDMB_ShowWhoPosted // @version 0.5.0 // @description Shows "Who Posted" popup from a thread // @author TroutMan // @include http://boards.straightdope.com/sdmb/showthread.php* // @require http://code.jquery.com/jquery-2.1.1.min.js // ==/UserScript== var threadId = qr_threadid.value; element = document.evaluate( ".//td[@class='vbmenu_control']", document.body, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null); var topToolBar = element.singleNodeValue.parentNode; if (topToolBar !== null) { var tableCell = document.createElement('td'); tableCell.setAttribute('class', 'vbmenu_control'); var link = document.createElement('a'); link.setAttribute('href', 'misc.php?do=whoposted&t='+threadId); link.setAttribute('onclick', 'javascript: who(' + threadId +'); return false;'); link.innerHTML = "Who Posted?"; tableCell.appendChild(link); topToolBar.appendChild(tableCell); }