🎉 欢迎访问GreasyFork.Org 镜像站!本镜像站由公众号【爱吃馍】搭建,用于分享脚本。联系邮箱📮

Greasy fork 爱吃馍镜像

Greasy Fork is available in English.

📂 缓存分发状态(共享加速已生效)
🕒 页面同步时间:2026/01/21 11:10:39
🔄 下次更新时间:2026/01/21 12:10:39
手动刷新缓存

HF Thread Citing

Makes citing threads convenient and useful!

이 스크립트를 설치하려면 Tampermonkey, Greasemonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey와 같은 확장 프로그램을 설치해야 합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Userscripts와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 유저 스크립트 관리자 확장 프로그램이 필요합니다.

(이미 유저 스크립트 관리자가 설치되어 있습니다. 설치를 진행합니다!)

🚀 安装遇到问题?关注公众号获取帮助

公众号二维码

扫码关注【爱吃馍】

回复【脚本】获取最新教程和防失联地址

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

(이미 유저 스타일 관리자가 설치되어 있습니다. 설치를 진행합니다!)

🚀 安装遇到问题?关注公众号获取帮助

公众号二维码

扫码关注【爱吃馍】

回复【脚本】获取最新教程和防失联地址

// ==UserScript==
// @name        HF Thread Citing
// @author      Emylbus
// @namespace   sublyme.net
// @description Makes citing threads convenient and useful!
// @include     *.hackforums.net/showthread.php*
// @exclude     *.hackforums.net/showthread.php*&*
// @version     1
// @grant       none
// ==/UserScript==

function getThreadTitle(){
    // Grab the title from the navigation menu.
    var navArray = document.getElementsByClassName('navigation')[0].innerHTML.split('\n');
    for(i = 0; i < navArray.length; i++){
        // The open page is given an "active" class, coupled with my @include I can know that this will give me the thread name.
        if(navArray[i].indexOf('class="active"') != -1)
        {
            // Screw regex, yay ugly string splitting! &nbsp; is the character between thread tags and their title.
            var threadTitle = navArray[i].split('class="active">')[1].split('</span>')[0].replace('&nbsp;',' ');
            var threadString = "[url="+window.location+"][b]"+threadTitle+"[/b][/url]";
            return threadString;
        }
    }
    return "ERROR: Could not determine the thread name! :(";
}

function getThreadOP(){
    // Grab the user name and profile link from the first post. Coupled with my @exclude I know that this will only get the first post on the first page, hence OP.
    var authorArray = document.getElementsByClassName("post_author")[0].getElementsByClassName("largetext")[0];
    var authorProfile = authorArray.getElementsByTagName("a")[0];
    
    // For some reason trying to parse a staff member's name, I would constantly get fucked up by this strong tag. Don't need it for my purposes anyway.
    var authorName = authorProfile.innerHTML.replace("<strong>","");
    
    // Again, screw regex!
    authorName = authorName.replace(">","<").split("<");
    
    // Some tricksy stuff to grab the name from the middle of tags.
    authorName = authorName[Math.floor(authorName.length/2)];
    var authorString = "[url="+authorProfile+"]"+authorName+"[/url]";
    return authorString;
}

function generateCitation(){
    var citation = getThreadTitle()+" by "+getThreadOP();
    window.prompt("Press Ctrl+C to copy thread citation!",citation);
}

function main(){
    // This took me forever to figure out, turns out userscripts aren't directly injected into the site code so you need to use an event listener.
    document.getElementsByClassName('navigation')[0].innerHTML = document.getElementsByClassName('navigation')[0].innerHTML + '<small><a title="Cite this thread!" href="javascript:void(0);" id="citer">[cite]</a></small>';
    var elementLink = document.getElementById('citer');
    elementLink.addEventListener("click", generateCitation, true);
}

main(); // Dunno if I should be putting javascript in a main() function, but that's how I grew up with other languages so :P