Advertisement
AnimaAgario

Untitled

Apr 28th, 2016
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.14 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Youtube channel visitor!
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Enter your favorite channels easily!
  6. // @author You
  7. // @match https://www.youtube.com/
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. function goWatch() {
  12. window.alert("Great! moving to " + channelVisit + "'s channel right now!");
  13. }
  14. var channelVisit = prompt("What channel would you like to visit? (Use the exact name with the correct capital case)");
  15.  
  16. if (channelVisit === "ANIMA") {
  17. goWatch();
  18. window.open("https://www.youtube.com/channel/UCFpTIo3GL02fB8CxR8Y88mw");
  19. } else if(channelVisit === "Arad - Agar.io") {
  20. goWatch();
  21. window.open("https://www.youtube.com/channel/UCHeKQfZnfICTPazmTRVhF2Q");
  22. } else if (channelVisit === "PewDiePie") {
  23. goWatch();
  24. window.open("https://www.youtube.com/user/PewDiePie");
  25. } else if (channelVisit.ignoreCase === "Markiplier") {
  26. goWatch();
  27. window.open("https://www.youtube.com/user/markiplierGAME");
  28. } else if (channelVisit === "RoYaL - Agario") {
  29. goWatch();
  30. window.open("https://www.youtube.com/channel/UCT8rkVRUD0CR5MxYRBUvXrw");
  31. } else if (channelVisit === "TheNamesDandy") {
  32. goWatch();
  33. window.open("https://www.youtube.com/channel/UCbgBFbaaOjiiHEM6ISDg7GA");
  34. } else if (channelName === "Smash") {
  35. goWatch();
  36. window.open("https://www.youtube.com/channel/UC_qVvdPdMIZDEc6zdj06ilA");
  37. } else if (channelVisit === "I LOVE AGAR.IO") {
  38. goWatch();
  39. window.open("https://www.youtube.com/channel/UC6sLhTaobEHKauhjRmWgL8Q");
  40. } else if (channelVisit === "Voetbal Inside") {
  41. goWatch();
  42. window.open("https://www.youtube.com/user/VITVRTL");
  43. } else if (channelVisit === "Klaas Kan Alles") {
  44. goWatch();
  45. window.open("https://www.youtube.com/channel/UCCaOWydWlVe6f1HJjtXc6xw");
  46. } else if (channelVisit === "StukTV") {
  47. goWatch();
  48. window.open("https://www.youtube.com/user/StukTV");
  49. } else if (channelVisit === "Prankster") {
  50. goWatch();
  51. window.open("https://www.youtube.com/user/PranksterNederland");
  52. } else if (channelVisit === "Gekke Markie") {
  53. goWatch();
  54. window.open("https://www.youtube.com/user/gekkemarkie");
  55. } else if (channelVisit === "Target Engineer") {
  56. goWatch();
  57. window.open("https://www.youtube.com/channel/UCep0rcdsMgkJnWXPAgWkajQ");
  58. } else if (channelVisit === "TOUZANI TV") {
  59. goWatch();
  60. window.open("https://www.youtube.com/user/TouzaniTV");
  61. } else if (channelVisit === "freekickerz") {
  62. goWatch();
  63. window.open("https://www.youtube.com/user/freekickerz");
  64. } else if (channelVisit === "Veynome - Agar.io") {
  65. goWatch();
  66. window.open("https://www.youtube.com/channel/UCme3ymjQXOF9VYmHoElz1HA");
  67. } else if (channelVisit === "Jumbo") {
  68. goWatch();
  69. window.open("https://www.youtube.com/channel/UC_17vC75UDfHgTJjX5Ravgw");
  70. } else if (channelVisit === "CordlessTub") {
  71. goWatch();
  72. window.open("https://www.youtube.com/channel/UC58HBmNxqZQEbeoZuGG60nw");
  73. } else if (channelVisit === "Myth - Agario") {
  74. goWatch();
  75. window.open("https://www.youtube.com/channel/UCX-zoVQ9XEaF65ecqpwmr7A");
  76. } else if (channelVisit === "ETZesty") {
  77. goWatch();
  78. window.open("https://www.youtube.com/channel/UChE__Q1lwqr92a46EyOosdg");
  79. } else if (channelVisit === "Shock") {
  80. goWatch();
  81. window.open("https://www.youtube.com/channel/UCZTHltbp-VYauGCFZHfLS1A");
  82. } else if (channelVisit === "LeafyIsHere") {
  83. goWatch();
  84. window.open("https://www.youtube.com/user/LeafyIsHere");
  85. } else if (channelVisit === "ComedyShortsGamer") {
  86. goWatch();
  87. window.open("https://www.youtube.com/user/ComedyShortsGamer");
  88. } else if (channelVisit === "TYT clan") {
  89. goWatch();
  90. window.open("https://www.youtube.com/channel/UCpLNDpAc5N43NuxcvEJI_2A");
  91. } else if (channelVisit === "Sirius") {
  92. goWatch();
  93. window.open("https://www.youtube.com/user/GamerCrypton");
  94. } else if (channelVisit === "Hero Clan") {
  95. goWatch();
  96. window.open("https://www.youtube.com/channel/UC5N89LfPZ52eRaW3D9wef8w");
  97. } else if (channelVisit === "Hero") {
  98. window.open("https://www.youtube.com/channel/UCWK-4MQPIP8ODMpwCgeHuRg");
  99. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement