// ==UserScript== // @name 网页归档 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 获取当前页面 URL 并归档到 Archive.is // @author 点灯 // @match *://*/* // @grant GM_registerMenuCommand // @grant GM_unregisterMenuCommand // @grant GM_setValue // @grant GM_getValue // @grant GM_deleteValue // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; // 创建菜单命令 GM_registerMenuCommand("归档到 Archive.is ", function() { // 获取当前页面的 URL var currentUrl = window.location.href; // 构造 Archive.is 提交页面的 URL var archiveUrl = "https://archive.is/submit/?url=" + encodeURIComponent(currentUrl); // 跳转到 Archive.is 提交页面 window.location.href = archiveUrl; }); })();