GreasyIRC

Adds an irc chat widget to greasyfork

目前为 2015-11-15 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name GreasyIRC
  3. // @namespace Danielv123
  4. // @description Adds an irc chat widget to greasyfork
  5. // @include https://greasyfork.org/*
  6. // @version 1
  7. // @grant none
  8. // ==/UserScript==
  9.  
  10.  
  11. var div = document.createElement('div')
  12. div.id = 'greasyirc'
  13. document.body.appendChild(div);
  14. document.getElementById('greasyirc').outerHTML = '<iframe src="https://kiwiirc.com/client/irc.kiwiirc.com/#greasyfork" style="border:0; width:350px; height:300px; position:fixed;right:0px;bottom:0px;"></iframe>'