Skip to content

Instantly share code, notes, and snippets.

@mofigan
Created August 1, 2010 06:48
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mofigan/503033 to your computer and use it in GitHub Desktop.
Save mofigan/503033 to your computer and use it in GitHub Desktop.
ウェブ魚拓を見る/取得するブックマークレット
javascript:
(function(){
var l=location.href;
l=prompt('URL',l);
var u='http://megalodon.jp/?url='+escape(l);
with(window.open().document){
location.href=u;
close();
}
}
)();
@mofigan
Copy link
Author

mofigan commented Aug 1, 2010

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment