creation chat inserter

inserts a creation chat into the page. For use with the 4.0 stock skin.

  1. // ==UserScript==
  2. // @name creation chat inserter
  3. // @namespace jiggmin
  4. // @include http://jiggmin.com/forum.php
  5. // @version 1
  6. // @grant none
  7. // @description inserts a creation chat into the page. For use with the 4.0 stock skin.
  8. // ==/UserScript==
  9.  
  10. var newChat = document.createElement("div");
  11. newChat.innerHTML = '<div class="creation"><embed width="960" height="300" src="http://cdn.jiggmin.com/games/borderless/borderless-loader-v4.swf" wmode="opaque"></embed></div>';
  12. document.body.insertBefore(newChat, document.getElementsByName("forums")[0])
  13. forums.parentNode.insertBefore(newChat, forums);