Image Replacement

Replaces the image source on specific websites

目前为 2023-07-03 提交的版本。查看 最新版本

// ==UserScript==
// @name         Image Replacement
// @namespace    1gd67390i
// @version      1.0
// @description  Replaces the image source on specific websites
// @match        *://vanced-youtube.neocities.org/2015/search/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Select the image element to be replaced
    var image = document.querySelector('img[src="/images/nav_logo225_hr.png"]');

    // Check if the image element exists
    if (image) {
        // Replace the image source
        image.src = 'https://googlewebhp.neocities.org/nav_logo224_hr.png';
    }
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址