Advertisement
Guest User

Untitled

a guest
Aug 28th, 2014
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name        Cortana
  3. // @include     http://www.wykop.pl/*
  4. // ==/UserScript==
  5. if (unsafeWindow.jQuery) {
  6.   var $ = unsafeWindow.jQuery;
  7.   main();
  8. } else {
  9.   addJQuery(main);
  10. }
  11. function main() {
  12.     $('li[class="notification m-user"]') .eq(0) .after('<li class="cortana"><a class="cortana2" href="#" title="Bojówka Windows Phone"><img class="cortana3"  src="http://i.imgur.com/RJsSpus.png"width="30" height="30"></i></a></li>');
  13. }
  14. function addJQuery(callback) {
  15.   var script = document.createElement('script');
  16.   script.textContent = '(' + callback.toString() + ')();';
  17.   document.body.appendChild(script);
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement