您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
This userscript makes posting your crypto currency address a lot easier. It simply replaces :omc:/:btc:/:ltc: with your OMC/BTC/LTC address.
// ==UserScript== // @name Hack Forums Crypto Currency Address Saver // @namespace https://gf.qytechs.cn/users/2155 // @version 0.3 // @description This userscript makes posting your crypto currency address a lot easier. It simply replaces :omc:/:btc:/:ltc: with your OMC/BTC/LTC address. // @include *hackforums.net* // ==/UserScript== var omcAddress = ""; //Enter your OMC address here var btcAddress = ""; //Write your BTC address here var ltcAddress = ""; //Write your LTC address here var includeOmc = false; //Set this to true if you want :omc: to be replace with your OMC address var includeBtc = false; //Set this to true if you want :btc: to be replace with your BTC address var includeLtc = false; //Set this to true if you want :ltc: to be replace with your LTC address document.getElementsByName('submit')[0].onclick = function() { if (includeOmc == true) { document.getElementById('message_new').value = document.getElementById('message_new').value.replace(/:omc:/g, omcAddress); }; if (includeBtc == true) { document.getElementById('message_new').value = document.getElementById('message_new').value.replace(/:btc:/g, btcAddress); }; if (includeLtc == true) { document.getElementById('message_new').value = document.getElementById('message_new').value.replace(/:ltc:/g, ltcAddress); }; };
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址