Advertisement
darkenvy

Pandora Block Add Stations - Simple

Nov 5th, 2014
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Hide Stations
  3. // @description Stops customers from adding stations
  4. // @include http://www.pandora.com/*
  5. // @include https://www.pandora.com/*
  6. // @include http://xkcd.com/*
  7. // @resource jqUI_CSS http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css
  8. // @version 1
  9. // ==/UserScript==
  10.  
  11. $("body").append (
  12. '<div id="gmOverlayDialog"> \
  13. Adding Stations: Employee Only \
  14. </div> \
  15. '
  16. );
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25. GM_addStyle ( " \
  26. #gmOverlayDialog { \
  27. position: fixed; \
  28. top: 40px; \
  29. left: 5px; \
  30. color: rgb(255,255,255); \
  31. font-size: 14px; \
  32. width: 500px; \
  33. height: 40px; \
  34. margin: 5px 5px 5px 5px; \
  35. border-width: 0px; \
  36. border-style: solid; \
  37. border-color: rgba(0,0,0,.2); \
  38. background-color:#465C7D; \
  39. z-index: 1000000; \
  40. } \
  41. " );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement