Skip to content

Instantly share code, notes, and snippets.

@jk3us
Created February 6, 2009 16:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jk3us/59487 to your computer and use it in GitHub Desktop.
Save jk3us/59487 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name phpMyAdmin: Bigger SQL box
// @namespace http://jk3.us/gmns
// @description Enlarge SQL Boxes in phpMyAdmin
// @include http://svn2.cure4kids.net/padmin/*
// @include https://svn2.cure4kids.net/padmin/*
// @include https://www.cure4kids.org/padmin/*
// @exclude */querywindow.php*
// ==/UserScript==
(function() {
var input = document.getElementById("sqlquery");
if (input) input.style.height = '500px';
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment