NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name My TA userscript // @version 1.0.1 // @namespace http://openuserjs.org/users/ous213 // @license GPL version 3 or any later version; http://www.gnu.org/copyleft/gpl.html // @author ous213 // @description Educatif purpose // @include http*://prodgame*.alliances.commandandconquer.com/*/index.aspx* // ==/UserScript== (function() { var main = function() { alert("It Work ! .. wassim.............^^.."); }; var script = document.createElement('script'); script.innerHTML = '(' + main.toString() + ')();'; script.type = 'text/javascript'; document.getElementsByTagName('head')[0].appendChild(script); })();