Californ1a / RSWebsiteImprovements

Hiscore improvements chrome extension
https://chrome.google.com/webstore/detail/runescape-hiscore-improve/ndfndghofhfepimjbnnfanjpbnkdhgpf
0 stars 0 forks source link

News article page ToC #10

Open Californ1a opened 1 year ago

Californ1a commented 1 year ago

Create a ToC with clickable links to each section:

Section names

Array.from(document.querySelectorAll(".category-heading")).map(e=>e.innerText.split("\n\n")[0])

Scroll

Array.from(document.querySelectorAll(".category-heading"))
  .filter(e=>e.innerText.toLowerCase().includes("patch notes"))[0]
  .scrollIntoView({behavior:"smooth"});