Hello. I want to *load external greasemonkey scripts, instead of load them locally* . How I can load without store them locally?
For example i have an alert script for google for example which is stored in *http://data.com/test.js* // ==UserScript== // @name load external script // @namespace . // @include https://www.google.es/* // @version 1 // @grant none // ==/UserScript== document.onreadystatechange = () => { if (document.readyState === 'complete') { // alert('test'); } }; -- You received this message because you are subscribed to the Google Groups "greasemonkey-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/greasemonkey-users. For more options, visit https://groups.google.com/d/optout.
