Image Replacement

Replaces the image source on specific websites

当前为 2023-07-03 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Image Replacement
  3. // @namespace 1gd67390i
  4. // @version 1.0
  5. // @description Replaces the image source on specific websites
  6. // @match *://vanced-youtube.neocities.org/2015/search/*
  7. // @grant none
  8. // ==/UserScript==
  9.  
  10. (function() {
  11. 'use strict';
  12.  
  13. // Select the image element to be replaced
  14. var image = document.querySelector('img[src="/images/nav_logo225_hr.png"]');
  15.  
  16. // Check if the image element exists
  17. if (image) {
  18. // Replace the image source
  19. image.src = 'https://googlewebhp.neocities.org/nav_logo224_hr.png';
  20. }
  21. })();