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

Popular posts from this blog

python - Scipy curvefit RuntimeError:Optimal parameters not found: Number of calls to function has reached maxfev = 1000 -

c# - How to add a new treeview at the selected node? -

java - netbeans "Please wait - classpath scanning in progress..." -