NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name l2firebirdShortCut // @version 1.0 // @description Add links to l2db.ru // @author Zeptor // @include http://www.l2-firebird.com/module/database/* // @require http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js // ==/UserScript== (function() { 'use strict'; var item = $("div:contains('Database ::')").parent().find("td:[colspan='99']").children("b"); var item_name = item.html(); var a = document.createElement('a'); var itemLink = $(a).attr("text", item_name).attr("href", "http://l2db.ru/search/" + item_name).attr("title", "http://l2db.ru/search/" + item_name); item.replaceWith(itemLink); })();