javascript - GreaseMonkey Hello World -
any ideas why script isn't working?
also, when install script name , description field blank?
//==userscript== //@name testname //@namespace anondeveloper //@description script automagically blah blah blah //@include * //==/userscript== alert('hello world!');
the script located on file system rather uri. causing issue?
it works me in latest google chrome (you didn't browsers tested). however, in order name , description correctly display, need add space after each //
:
// ==userscript== // @name testname // @namespace anondeveloper // @description script automagically blah blah blah // @include * // ==/userscript== alert('hello world!');
Comments
Post a Comment