xHamster Comments Button

Replaces the "New xHamster" button with direct access to your new comments

  1. // ==UserScript==
  2. // @name xHamster Comments Button
  3. // @namespace https://greasyfork.org/en/scripts/370228-xhamster-comments-button
  4. // @version 0.3
  5. // @description Replaces the "New xHamster" button with direct access to your new comments
  6. // @author Phlegomatic
  7. // @match https://xhamster.com/*
  8. // @include https://*.xhamster.com/*
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. var TAG = "New Comments";
  13. var URL = "https://xhamster.com/my/subscriptions/news?show=comments";
  14.  
  15. var cName = "design-switcher no-popunder";
  16.  
  17. document.getElementsByClassName(cName)[0].innerHTML=TAG;
  18. document.getElementsByClassName(cName)[0].href=URL;