ChangeYear

Description goes here

  1. // ==UserScript==
  2. // @name ChangeYear
  3. // @namespace Violentmonkey Scripts
  4. // @match https://vanced-youtube.neocities.org/2015/
  5. // @grant none
  6. // @version 1.0
  7. // @license MIT
  8. // @description Description goes here
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. // Find the target paragraph element
  15. var paragraph = document.querySelector('p[style="color:#767676;font-size:8pt"]');
  16.  
  17. // Check if the paragraph element exists
  18. if (paragraph) {
  19. // Update the year to 2013
  20. paragraph.innerHTML = '© 2013 - <a href="/web/20150218000620/http://www.google.com/intl/en/policies/privacy/">Privacy</a> - <a href="/web/20150218000620/http://www.google.com/intl/en/policies/terms/">Terms</a>';
  21. }
  22. })();