Greasy Fork 还支持 简体中文。

Change Text to "More"

Blank

  1. // ==UserScript==
  2. // @name Change Text to "More"
  3. // @version 1.0
  4. // @grant none
  5. // @license MIT
  6. // @match https://vanced-youtube.neocities.org/2011/
  7. // @description Blank
  8. // @namespace https://greasyfork.org/users/1090996
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. // Find the span element by its ID
  15. var spanElement = document.getElementById('gbztms1');
  16.  
  17. // Change the text content to "More" if the element exists
  18. if (spanElement) {
  19. spanElement.textContent = 'More';
  20. }
  21. })();