Discogs

By gf3 Last update Dec 14, 2008 — Installed 67 times. Daily Installs: 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0

There are 1 previous version of this script.

// ==UserScript==
// @name          Discogs
// @namespace     http://runlevel6.org/greasemonkey/discogs
// @description   Automatically selects "Catalog #" from the search dropdown and focuses the search field
// @include       http://*discogs.com*
// ==/UserScript==

// INIT
var dropDown    = document.getElementById('type');
var searchInput = document.getElementById('q');

// MAIN
for (var i=0; i<dropDown.options.length; i++) {
  if (dropDown.options[i].value == "catno") {
    dropDown.selectedIndex = i;
    break;
  }
}

searchInput.focus();