NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name pr0keys steam link öffnen // @namespace http://tampermonkey.net/ // @version 0.1 // @description unnötigen kram leichter machen ;) // @author Thomas Allcaps // @match https://*.pr0keys.com/* // @license MIT // @grant none // @require http://code.jquery.com/jquery-latest.js // ==/UserScript== $(document).ready(function($){ setTimeout(function() { $(".mb-0").css({"cursor":"pointer"}) $(".mb-0").click(function(){ $(".text-muted").remove() var spielname = $(this).text() window.open("https://store.steampowered.com/search/?term="+spielname+"", '_blank'); }) }, 400); })