Untruncate title - odysee.com

Untruncates odysee video titles

  1. // ==UserScript==
  2. // @name Untruncate title - odysee.com
  3. // @namespace Violentmonkey Scripts
  4. // @match https://odysee.com/*
  5. // @grant none
  6. // @version 0.0.2
  7. // @author diehardzg
  8. // @description Untruncates odysee video titles
  9. // ==/UserScript==
  10.  
  11. var css = document.createElement("style");
  12. css.innerHTML=`
  13. .claim-tile__title .truncated-text {
  14. display: block !important;
  15. }
  16.  
  17. .claim-preview__title .truncated-text
  18. {
  19. display: block !important;
  20. }
  21. `;
  22. document.head.appendChild(css);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址