nicop06 / Ratins walkinghighlands

// ==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);
  })
})