Skip to content

Instantly share code, notes, and snippets.

View mephisto41's full-sized avatar

Morris Tseng mephisto41

  • Mozilla
  • Taiwan, Taipei
View GitHub Profile
// ==UserScript==
// @name Get Wiki format for dashboard
// @namespace bugzilla
// @include https://bugzilla.mozilla.org/page.cgi?id=mydashboard.html
// @version 1
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js
// @require https://gist.github.com/raw/2625891/waitForKeyElements.js
// @grant GM_setClipboard
// ==/UserScript==
$("#query_count_refresh").append("<span>|</span><input type=button value='To Wiki' id='to-wiki-button' />")
// ==UserScript==
// @name Get Wiki format
// @namespace bugzilla
// @include https://bugzilla.mozilla.org/show_bug.cgi?id=*
// @version 1
// @grant GM_setClipboard
// ==/UserScript==
var title = document.getElementById("mode-container");
var button = document.createElement("button");
button.type = "button";