Skip to content

Instantly share code, notes, and snippets.

@ssig33
Created February 1, 2012 08:33
Show Gist options
  • Save ssig33/1715954 to your computer and use it in GitHub Desktop.
Save ssig33/1715954 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name mazusou na cookpad
// @namespace http://ssig33.com
// @description cookpad ga mazusou ninaru
// @include http://cookpad.com/*
// ==/UserScript==
(function() {
window.onload = function() {
var img, _i, _len, _ref, _results;
_ref = document.querySelectorAll('img');
_results = [];
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
img = _ref[_i];
_results.push(img.src = 'http://mazusou.ssig33.com/?url=' + img.src);
}
return _results;
};
}).call(this);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment