/*
* @title saveWebArchive
* @description save web page to WebArchive
* @include http://*
* @license MIT License
* @javascript_url
*/
// http://stackoverflow.com/questions/19778064/posting-to-wayback-machine-via-bookmarklet
// http://la.ma.la/blog/diary_200604122345.htm
(function () {
document.createElement("img").src = "http://web.archive.org/save/" + encodeURI(document.location.href);
})()