Hack Forums - Profile Citation

Cite Profiles while on Mobile Devices using this UserScript.

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name            Hack Forums - Profile Citation
// @namespace       Roger Waters
// @description     Cite Profiles while on Mobile Devices using this UserScript.
// @require         http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js
// @include         *hackforums.net/member.php?action=profile&uid=*
// @version         1.0
// ==/UserScript==

uid = window.location.href.replace(/[^0-9]/g, '');
username = $("span[class*='group']").text();

$("table[align='center']").find("td:first").prepend('<br /><table border="0" cellspacing="1" cellpadding="4" class="tborder"> \
<tbody><tr> \
<td colspan="2" class="thead"><strong>Profile Cite</strong></td> \
</tr> \
<tr> \
<td class="trow1"><strong>Quick Cite:</strong></td> \
<td class="trow1"><button class= "bitButton meep">Cite</button></td> \
</tr> \
</tbody></table>');

$(".meep").click(function(){
    window.prompt("Press CTRL + C to copy profile citation!", "[url=http://www.hackforums.net/member.php?action=profile&uid=" + uid + "][color=#EFEFEF][b]" + username + "[/color][/b][/url]");
});