Youtube remove cards

Youtube remove cards end video

目前为 2020-08-18 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Youtube remove cards
  3. // @namespace https://greasyfork.org/en/scripts/407765-youtube-remove-cards/
  4. // @version 0.2
  5. // @description Youtube remove cards end video
  6. // @author TechComet
  7. // @match https://*.youtube.com/*
  8. // @match https://youtube.com/*
  9. // @require https://greasyfork.org/scripts/35370-add-css/code/Add_CSS.js?version=598682
  10. // @supportURL https://greasyfork.org/en/scripts/407765-youtube-remove-cards/feedback
  11. // @grant none
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16.  
  17. AddCss('.ytp-ce-element.ytp-ce-element-show { visibility:hidden; !important; }');
  18.  
  19.  
  20.  
  21. })();