Advertisement
AmourSpirit

usi (greasemonkey) header

Dec 14th, 2015
281
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. // ==UserScript==
  2. // @name {Userscript Name}
  3. // @namespace {your website ?!}
  4. // @author {Your Name}
  5. // @description {Userscript Description}
  6. // @include *
  7. // If your UserScript to be executed on all sides : *
  8. // With an include , you can use it as a wildcard even more *
  9. // to use it as a regular expression ,
  10. // But then you have the entire expression fit !
  11. // For example : * .beliebige - webseite.de *
  12. // Otherwise, it has to look like this: www.beliebige-webseite.de
  13. // @info {Further information ...}
  14. // @grant {solicit access to additional features}
  15. // @updateURL {If the version number is different , update your USI User Script}
  16. // @run-at (document-end || document-start || document-ready)
  17. // @include-jquery (true || false)
  18. // @version 1.0.0
  19. // ==/UserScript==
  20.  
  21. // ATTENTION : Please note that a new user script is inserted immediately .
  22. // This is just an example so you can see that USI works
  23.  
  24. document.addEventListener("click", function(){
  25. alert("Du hast soeben geklickt!");
  26. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement