Replaces the user icon with the Flag of the United States!
// ==UserScript==
// @name xHamster USA Flag User Icon
// @namespace https://greasyfork.org/en/scripts/372997-xhamster-usa-flag-user-icon
// @version 0.1
// @description Replaces the user icon with the Flag of the United States!
// @author Phlegomatic
// @match https://xhamster.com/*
// @include https://*.xhamster.com/*
// @grant none
// ==/UserScript==
var css = document.createElement('style');
css.type = "text/css";
css.innerHTML = ".iconUser, .iconUserOver, .iconUserGray { height: 11px; width: 16px; background: #B3B3B3 url(https://static-cl.xhcdn.com/images/flag/v3/US.png) no-repeat;}";
document.getElementsByTagName('head')[0].appendChild(css);