Grundos.Cafe - Highlight Item Names On Hover

Highlights the item name in your shop and SDB when you hover over it for quick and easy copying

  1. // ==UserScript==
  2. // @name Grundos.Cafe - Highlight Item Names On Hover
  3. // @namespace Gorix [Jawsch]
  4. // @description Highlights the item name in your shop and SDB when you hover over it for quick and easy copying
  5. // @match http*://www.grundos.cafe/market/*
  6. // @match http*://www.grundos.cafe/safetydeposit/*
  7. // @version 1.0
  8. // ==/UserScript==
  9.  
  10. [].forEach.call(document.body.querySelectorAll('td[class="sdbname"]:first-child'), function (e) {
  11. e.addEventListener("mouseover", function () {
  12. var selection = window.getSelection();
  13. var range = document.createRange();
  14. range.selectNodeContents(e.querySelector('b'));
  15. selection.removeAllRanges();
  16. selection.addRange(range);
  17. })
  18. });