Replaces the image source on specific websites
// ==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';
}
})();