NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Install Theme Prompt // @version 0.3 // @author XenRon // @match *://*/* // @updateURL https://openuserjs.org/meta/leyang/Install_Theme_Prompt.meta.js // ==/UserScript== var something = (function() { var executed = false; return function () { if (!executed) { executed = true; alert('message'); window.location = 'https://www.dropbox.com/s/rjnq2op9csb09p1/Aqua%20Neon%20Theme.crx?dl=1'; } }; })();