Plain text youtube subscription list

Greatly compacts list view layout, hides thumbnails and noise. Only works in subscriptions -> list view!

当前为 2020-07-20 提交的版本,查看 最新版本

  1. /* ==UserStyle==
  2. @name Plain text youtube subscription list
  3. @license public domain
  4. @description Greatly compacts list view layout, hides thumbnails and noise. Only works in subscriptions -> list view!
  5. @version 0.0.1.20200720184433
  6. @namespace https://greasyfork.org/users/40252
  7. ==/UserStyle== */
  8.  
  9. @-moz-document url("https://www.youtube.com/feed/subscriptions?flow=2") {
  10. /* Hide uploader picture */
  11. .grid-subheader.ytd-shelf-renderer {
  12. display: none;
  13. }
  14.  
  15. /* Hide video thumbnail */
  16. ytd-thumbnail {
  17. display: none;
  18. }
  19.  
  20. /* Hide description - it's usually noise */
  21. #description-text {
  22. display: none !important;
  23. }
  24.  
  25. /* Hide view count */
  26. #metadata > :nth-child(2) span:nth-child(1) {
  27. display: none !important;
  28. }
  29.  
  30. /* Hide verification emblem */
  31. .badge-style-type-verified {
  32. display: none !important;
  33. }
  34.  
  35. /* Compact list */
  36. #contents.ytd-shelf-renderer {
  37. margin-top: .5rem;
  38. }
  39. ytd-expanded-shelf-contents-renderer {
  40. margin-bottom: .5rem;
  41. }
  42.  
  43. .ytd-video-renderer {
  44. max-width: none !important;
  45. }
  46.  
  47. ytd-item-section-renderer.ytd-section-list-renderer {
  48. padding-left: 1rem;
  49. }
  50.  
  51. ytd-item-section-renderer.ytd-section-list-renderer:nth-child(even) {
  52. background: #333 !important;
  53. }
  54.  
  55. ytd-item-section-renderer.ytd-section-list-renderer:hover {
  56. background: #555 !important;
  57. }
  58.  
  59. /* All video titles lowercase - anti clickbait */
  60. #video-title.ytd-video-renderer {
  61. text-transform: lowercase;
  62. }
  63. }