Replaces the old Google redirect message with a new one.
当前为 
// ==UserScript==
// @name         Old Google Redirect Message Replacement
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Replaces the old Google redirect message with a new one.
// @author       Your Name
// @match        https://vanced.neocities.org/2013*
// @grant        none
// ==/UserScript==
(function() {
    'use strict';
    const oldMessage = "You have been redirected to an old version of the search interface, since the new one is currently under development.";
    const newMessage = "Google Instant is unavailable. Press Enter to search.";
    const learnMoreLink = '<a href="/support/websearch/bin/answer.py?answer=186645&form=bb&hl=en">Learn more</a>';
    const messageSpan = document.querySelector('span.nbprs');
    if (messageSpan && messageSpan.innerText === oldMessage) {
        messageSpan.innerHTML = `${newMessage} ${learnMoreLink}`;
    }
})();