NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name care eye // @namespace http://abelliu.com // @version 1.1 // @description change background to green // @author abel // @include * // @grant none // @license MIT // ==/UserScript== function change(){ var eles = document.getElementsByTagName('*'); for(var i = 0; i < eles.length; i++) { eles[i].style.background='#CCE8CF'; } setTimeout(change, 1000); } (function() { 'use strict'; change(); })();