Advertisement
Guest User

Untitled

a guest
Aug 4th, 2021
545
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         New Userscript
  3. // @namespace    http://tampermonkey.net/
  4. // @version      0.1
  5. // @description  try to take over the world!
  6. // @author       You
  7. // @match        https://disk.yandex.ru/client/disk
  8. // @icon         https://www.google.com/s2/favicons?domain=yandex.ru
  9. // @grant        none
  10. // @require  http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js
  11. // @require  https://gist.github.com/raw/2625891/waitForKeyElements.js
  12. // ==/UserScript==
  13.  
  14. waitForKeyElements (
  15.     ".clamped-text",
  16.     replaceWords
  17. );
  18.  
  19. function replaceWords()
  20. {
  21.    $('.clamped-text').each(function(i, obj) {
  22.        if ($(obj).text() == "Документы")
  23.            $(obj).text("Docs");
  24.    });
  25.  
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement