Advertisement
Guest User

PHPFreaks GreaseyMonkey Quick Link Menu

a guest
Sep 24th, 2012
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name        PHPFreaks Quick Links
  3. // @namespace   phpfreaks
  4. // @include     http://forums.phpfreaks.com/*
  5. // @grant       none
  6. // ==/UserScript==
  7. var quick_link_button = document.createElement('li');
  8. quick_link_button.setAttribute('class', 'right');
  9. quick_link_button.innerHTML = '<a style="border-left:1px solid #015d82;margin-left:-3px;padding-left:4px;padding-right:4px;"><div style="margin-top:7px;padding-bottom:4px;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #fff;"></div></a>';
  10.  
  11. var nav_explore = document.getElementById('nav_explore');
  12.  
  13. nav_explore.parentNode.insertBefore(quick_link_button, nav_explore);
  14.  
  15. nav_explore.innerHTML = nav_explore.innerHTML + '<div id="quick_links_menu" style="display:none;border:1px solid #bbbcbe;position:absolute;z-index:100;padding:5px;width:145px;height:135px;background:#fff;box-shadow:3px 3px 4px 0px #ccc;"><ul>' +
  16. '<li style="font-size:11px;padding-top:7px;padding-bottom:6px;border-bottom:1px solid #edf0f5;"><a style="background:none !important;color:#0087BE;" href="http://forums.phpfreaks.com/index.php?app=core&module=search&do=viewNewContent&search_app=forums&search_app_filters[forums][searchInKey]=&change=1&period=lastvisit&followedItemsOnly=0&userMode=all">Items I Participated In</a></li>' +
  17. '<li style="font-size:11px;padding-top:7px;padding-bottom:6px;border-bottom:1px solid #edf0f5;"><a style="background:none !important;color:#0087BE;" href="http://forums.phpfreaks.com/index.php?app=core&module=search&do=viewNewContent&search_app=forums&search_app_filters[forums][searchInKey]=&change=1&period=lastvisit&followedItemsOnly=0&userMode=title">Items I Started</a></li>' +
  18. '<li style="font-size:11px;padding-top:7px;padding-bottom:6px;border-bottom:1px solid #edf0f5;"><a style="background:none !important;color:#0087BE;" href="http://forums.phpfreaks.com/index.php?app=core&module=search&do=viewNewContent&search_app=forums&search_app_filters[forums][searchInKey]=&change=1&period=lastvisit&userMode=&followedItemsOnly=1">Items I Follow</a></li>' +
  19. '<li style="font-size:11px;padding-top:7px;padding-bottom:6px;border-bottom:1px solid #edf0f5;"><a style="background:none !important;color:#0087BE;" href="http://forums.phpfreaks.com/index.php?app=core&module=search&do=viewNewContent&search_app=forums&search_app_filters[forums][searchInKey]=&change=1&period=lastvisit&userMode=&followedItemsOnly=0">New Since Last Visit</a></li>' +
  20. '<li style="font-size:11px;padding-top:7px;padding-bottom:6px;border-bottom:1px solid #edf0f5;"><a style="background:none !important;color:#0087BE;" href="http://forums.phpfreaks.com/index.php?app=core&module=search&do=viewNewContent&search_app=forums&search_app_filters[forums][searchInKey]=&change=1&period=unread&userMode=&followedItemsOnly=0">Content I Have Not Read</a></li>' +
  21. '</ul></div>';
  22.  
  23. quick_link_button.addEventListener('click', toggle_quick_links, false);
  24.  
  25. function toggle_quick_links()
  26. {
  27.     var el = document.getElementById('quick_links_menu');
  28.  
  29.     if (el.style.display == 'none') {
  30.         el.style.display = 'block';
  31.     } else {
  32.         el.style.display = 'none';
  33.     }
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement