Sleazy Fork is available in English.

xHamster USA Flag

Replaces the Union flag with a proper American flag!

  1. // ==UserScript==
  2. // @name xHamster USA Flag
  3. // @namespace https://greasyfork.org/en/scripts/372993-xhamster-usa-flag
  4. // @version 0.1
  5. // @description Replaces the Union flag with a proper American flag!
  6. // @author Phlegomatic
  7. // @match https://xhamster.com/*
  8. // @include https://*.xhamster.com/*
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. var css = document.createElement('style');
  13. css.type = "text/css";
  14. css.innerHTML = ".iconFlag_en { height: 11px; width: 16px; background: #B3B3B3 url(https://static-cl.xhcdn.com/images/flag/v3/US.png) no-repeat; }";
  15. document.getElementsByTagName('head')[0].appendChild(css);