您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Ссылка на создание нового лота в верхюю часть страницы рынка
当前为
// // ==UserScript== // @name hwm_new_lot_top_href // @author Pahan https://greasyfork.org/uk/users/18377-pahan // @namespace hwm_pahan // @description Ссылка на создание нового лота в верхюю часть страницы рынка // @homepage https://greasyfork.org/en/users/18377-pahan // @icon http://dcdn.heroeswm.ru/avatars/30/nc-5/30547.gif // @version 1.0 // @encoding utf-8 // @include http://*heroeswm.ru/auction.php* // @include http://*lordswm.com/auction.php* // @include http://178.248.235.15/auction.php* // @grant GM_deleteValue // @grant GM_getValue // @grant GM_listValues // @grant GM_setValue // @grant GM_addStyle // @grant GM_log // @grant GM_openInTab // @grant GM_xmlhttpRequest // ==/UserScript== function BeBeTDGet(AHTML) { var els = document.getElementsByTagName('td'); for( var i = 0; i < els.length; i++ ) if (els[i].innerHTML == AHTML) return els[i]; } function AddNewLotURL() { var LTD = BeBeTDGet('\u041A\u0430\u0442\u0435\u0433\u043E\u0440\u0438\u0438'); LTD.innerHTML = '<b><center><a href="auction_new_lot.php">Выставить лот</a></center></b>'; } AddNewLotURL();