Absolute Dates on FP

because hover is stupid and I'm a lazy fuck who wants to see both

当前为 2015-05-25 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Absolute Dates on FP
  3. // @author lavacano - Reagy
  4. // @namespace https://greasyfork.org/users/8353
  5. // @description because hover is stupid and I'm a lazy fuck who wants to see both
  6. // @include http://facepunch.com/showthread.php?*
  7. // @include http://www.facepunch.com/showthread.php?*
  8. // @version 0.1
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12.  
  13. var elems = document.getElementsByTagName('span'), i;
  14. for (i in elems) {
  15. if (elems[i].className == "date") {
  16. var relTime = elems[i].innerHTML;
  17. elems[i].innerHTML = elems[i].title + " - " + relTime;
  18. }
  19. }