Skip to content

Instantly share code, notes, and snippets.

@hail2u
Created June 25, 2009 08:40
Show Gist options
  • Select an option

  • Save hail2u/135754 to your computer and use it in GitHub Desktop.

Select an option

Save hail2u/135754 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name MUJI search fix
// @namespace http://hail2u.net/
// @description fix crazy MUJI search behavior.
// @include http://www.muji.net/store/cmdty/search2
// ==/UserScript==
// console.time("muji-search-fix");
Array.forEach(document.getElementsByTagName("a"), function (a) {
a.href = a.href.replace(/^javascript:linkIsearch\('.*?','(.*?)'\);$/, "$1");
});
// console.timeEnd("muji-search-fix");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment