NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name FaceChange // @author neslinesli93 // @namespace https://didattica.polito.it/portal/page/portal/home/Studente // @version 0.1 // @require http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js // @include https://*.* // @grant unsafeWindow // ==/UserScript== myUrl = // PUT YOUR URL HERE $(document).ready(function () { var tables = $("table.RegionBorderMao"); image = $(tables[0]).find("tbody>tr>td>table>tbody>tr>td>img"); $(image).attr("src", myUrl); });