This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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' />") |