Greasy Fork is available in English.
一键保存网页到互联网档案馆/Wayback Machine。/Save web pages to Wayback Machine with one click。
// ==UserScript==
// @name 一键保存网页到互联网档案馆/Wayback Machine
// @namespace http://tampermonkey.net/
// @version 0.2
// @description 一键保存网页到互联网档案馆/Wayback Machine。/Save web pages to Wayback Machine with one click。
// @author M-o-x
// @match *://*/*
// @grant none
// @license MIT
// ==/UserScript==
/* 获取当前网页地址 */
var url = window.location.href;
/* 变量url加上"https://web.archive.org/save/"前缀 */
url = "https://web.archive.org/save/" + url;
(function () {
"use strict";
/* 如果监听到按下Alt+B快捷键,在新标签页跳转到rul */
document.onkeydown = function (e) {
if (e.altKey && e.key === "b") {
window.open(url);
}
};
})();