Advertisement
Guest User

ddddd

a guest
May 25th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.00 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Talibri Quicker Menu
  3. // @namespace http://gitlab.com/Talibri
  4. // @version 0.1.1
  5. // @description
  6. // @author Dan Campbell, original script based on work by Kaine "Pirion" Adams
  7. // @match https://talibri.com/*
  8. // @grant none
  9. // @require https://gist.github.com/raw/2625891/waitForKeyElements.js
  10. // ==/UserScript==
  11.  
  12. function addQuickMenu() {
  13. 'use strict';
  14.  
  15. $(`
  16. <div id="quick-menu" style="font-size: 10px; margin-left: 5px; margin-right 5px;">
  17. <div id="quick-menu-info" class="col-md-12 row" style=" margin-top: 10px;">Quick Menu</div>
  18. <div id="quick-menu-cities" class="col-md-12 row" style="padding-left:30px !important;">
  19. <table class="col-md-12">
  20. <tr>
  21. <th width="10%"></th>
  22. <th width="10%">Market</th>
  23. <th width="10%">Cooking</th>
  24. <th width="10%">Tailoring</th>
  25. <th width="10%">Blacksmithing</th>
  26. <th width="10%">Weaponsmithing</th>
  27. <th width="10%">Woodworking</th>
  28. <th width="10%">Alchemy</th>
  29. <th width="10%">Construction</th>
  30. <th width="10%">Enchanting</th>
  31. </tr>
  32. <tr>
  33.  
  34. <tr>
  35. <td><a href="/cities/Lowenheim">Lowenheim</a></td>
  36. <td><a href="/trade/1">Lowenheim Market District</a></td>
  37. <td><a href="/crafting/11?city_id=2">Mystra's Tower</a></td>
  38. <td><a href="/crafting/9?city_id=2">Tavern</a></td>
  39. <td><a href="/crafting/10?city_id=2">Mane's Thread</a></td>
  40. <td><a href="/crafting/3?city_id=2">Koronis' Foundry</a></td>
  41. <td><a href="/crafting/4?city_id=2">Koronis' Smithy</a></td>
  42. <td><a href="/crafting/5?city_id=2">Pel's Woodworking Shop</a></td>
  43. <td><a href="/crafting/6?city_id=2">Old Grok's Alchemy Lab</a></td>
  44. <td><a href="/crafting/8?city_id=2">Khandri's Construction Yard</a></td>
  45. </tr>
  46.  
  47. </table>
  48. <p>&nbsp;</p>
  49. </div>
  50.  
  51.  
  52. <div id="quick-menu-gathering" class="col-md-12 row">
  53. <p class="col-md-1">Gathering</p>
  54. <p class="col-md-11">
  55. <a href="https://talibri.com/locations/4/show">Mikhail Mountain</a>
  56.  
  57. </p>
  58. </div>
  59.  
  60.  
  61.  
  62. </div>`).prependTo('.main-page');
  63.  
  64. }
  65.  
  66.  
  67. waitForKeyElements(".main-page", addQuickMenu);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement