Open the current page in archive.is
Opens the current page with archive.is, which will save a snapshot of the page and often bypasses paywalls.
Installation:
Drag this button to your bookmarks bar:
Source Code:
javascript: (function () {
var currentUrl = window.location.href;
var encodedUrl = encodeURIComponent(currentUrl);
var archiveUrl = "https://archive.is/submit/?url=" + encodedUrl;
window.open(archiveUrl, "_blank");
})();