// ==UserScript== // @name 還原艦船名稱 // @namespace https://greasyfork.org/zh-TW/scripts/405281-%E9%82%84%E5%8E%9F%E8%89%A6%E8%88%B9%E5%90%8D%E7%A8%B1 // @version 0.2 // @description 自動替換所有連結名稱 // @author x94fujo6 // @match https://wiki.biligame.com/blhx/* // @require https://code.jquery.com/jquery-3.5.1.min.js // @downloadURL none // ==/UserScript== (function() { 'use strict'; $(document).ready(function(){ $('a[href*="blhx"]').has('.af').each(function(){ $(this).find('.af').text($(this).attr("title")); }); }); })();