您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Change the default Archival Settings on the Wayback Machine
// ==UserScript== // @name Wayback Machine Default Archival Settings // @namespace http://tampermonkey.net/ // @version 1.4 // @description Change the default Archival Settings on the Wayback Machine // @author Kxeo // @match https://web.archive.org/save // @icon https://web-static.archive.org/_static/images/icon_savePage.png // @license MIT // ==/UserScript== const Save_outlinks = document.getElementById("capture_outlinks") // Save_outlinks.setAttribute("checked", "") const Save_error_pages = document.getElementById("capture_all") // Save_error_pages.removeAttribute("checked") /* This switch works in reverse. This turns "Save error pages" OFF, not ON */ const Save_screenshot = document.getElementById("capture_screenshot") // Save_screenshot.setAttribute("checked", "") const Disable_ad_blocker = document.getElementById("disable_adblocker") // Disable_ad_blocker.setAttribute("checked", "") const Save_also_in_my_web_archive = document.getElementById("wm-save-mywebarchive") // Save_also_in_my_web_archive.setAttribute("checked", "") const Email_me_the_results = document.getElementById("email_result") // Email_me_the_results.setAttribute("checked", "") const Email_me_a_WACZ_file_with_the_results = document.getElementById("wacz") // Email_me_a_WACZ_file_with_the_results.setAttribute("checked", "")