NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @namespace http://openuserjs.org/users/Yasmin1304 // @name Auto Reload Page // @description Reload pages every 5 seconds // @copyright 2021, Yasmin1304, (http://openuserjs.org/users/Yasmin1304) // @license MIT // @version 0.0.0 // @include https://www.edu.gov.qa/ar/Deputy/HEaffairs/Pages/UnischolarshipeOut.aspx // @grant none // ==/UserScript== //==OpenUserJS== //@author Yasmin1304 //==/OpenUserJS== setInterval(function(){ location.reload(); }, 3000);