RenzXVI

TES Chat Topic

Aug 10th, 2016
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         TES Chat Topic
  3. // @namespace    http://tampermonkey.net/
  4. // @version      0.1
  5. // @description  Chat topic links
  6. // @author      
  7. // @match        wikia.com
  8. // @grant        none
  9. // @include      http://elderscrolls.wikia.com/wiki/Special:Chat
  10. // @include      wikia.com
  11.  
  12. // ==/UserScript==
  13.  
  14. (function() {
  15.     'use strict';
  16.  
  17.     // Your code here...
  18.  
  19. var chatTopic = '<a href="/wiki/Special:Log/chatban" target="_blank" title="Chat ban log" style="position:relative;text-decoration:underline;">Welcome to</a> <a href="/wiki/Special:Log/block" target="_blank" title="block log" style="position:relative;text-decoration:underline;">The Elder</a> <a href="/wiki/Special:Log/newusers" target="_blank" title="Account Creation Log" style="position:relative;text-decoration:underline;">Scrolls Chat</a><br /><a href="/wiki/The_Elder_Scrolls_Wiki:Chat#Grounds_for_blocking" target="_blank" title="Chat Guidelines" style="position:relative;text-decoration:underline;">Chat rules</a> • <a href="/wiki/The_Elder_Scrolls_Wiki:Staff" target="_blank" title="List of Staff" style="position:relative;text-decoration:underline;">Moderators</a> • <a href="http://www.wikia.com/Terms_of_Use" title="Wikia Terms of Use" target="_blank" style="position:relative;text-decoration:underline;">Terms of Use</a>';
  20. $(function() {
  21.     $('#ChatHeader .public.wordmark').prepend('<div class="chattopic" style="text-align:center;position:absolute;width:80%;z-index:0;font-size: 13px;color:#3A3A3A;font-weight:bold;line-height:1.6;margin-left:110px;">'+chatTopic+'</div>')
  22.     .find('a').attr('style','position:relative;text-decoration:none;');
  23. });
  24. $('#ChatHeader .public.wordmark div:not(:first-child)').remove();
  25. var users = ["Timeoin","Flightmare","Atvelonis", "Emperor Jarjarkine"];
  26. if(jQuery.inArray(wgUserName,users) > -1) {
  27.     $(".ChatHeader").addClass("admin");
  28. }
  29.  
  30. })();
Add Comment
Please, Sign In to add comment