NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Ratins walkinghighlands // @namespace www.walkhighlands.co.uk // @include https://www.walkhighlands.co.uk/* // @version 1 // @grant none // ==/UserScript== $('.walktable').find('a').each(function() { const link = $(this).prop('href') const linkText = $(this).text() const $link = $(this) $.get(link, (html) => { const rating = $(html).find('[itemprop=ratingValue]').text() $(`<span>${rating} - </span>`).insertBefore($link); }) })