您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Revert the URL encoding of colons by Chrome %s replacement to make it work with Wayback Machines search
当前为
// ==UserScript== // @name Wayback Machine for Chrome Omnibox // @namespace https://github.com/Archangel1C // @version 0.2 // @description Revert the URL encoding of colons by Chrome %s replacement to make it work with Wayback Machines search // @author Archangel1C // @match http*://web.archive.org/web/* // @grant none // ==/UserScript== // // Sources/Influences: // - https://superuser.com/a/302179 for the JavaScript part // - https://superuser.com/a/364060 for the GreaseMonkey part (function() { // debugger instruction lets Chrome stop here // debugger; // https://www.w3schools.com/js/js_strict.asp // https://stackoverflow.com/a/1335881/4423698 'use strict'; // avoid infinite recursion if(window.location.href.search(/%3A/i) > -1) { window.location = window.location.href.replace(/%3A/g, ":"); } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址