YouTube Watch-Later Playlist Nuker

Batch-remove every video in your YouTube Watch-Later Playlist

  1. // ==UserScript==
  2. // @name YouTube Watch-Later Playlist Nuker
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description Batch-remove every video in your YouTube Watch-Later Playlist
  6. // @author Edwinem
  7. // @match https://www.youtube.com/playlist?list=WL&disable_polymer=true
  8. // @grant none
  9. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. $( document ).ready(function() {
  15. setTimeout(function() {
  16. $(".pl-video-edit-remove").each(function() {
  17. $(this).click();
  18. setTimeout(300);
  19. });
  20. }, 1000);
  21.  
  22. setTimeout(function() {
  23. location.reload();
  24. }, 5000);
  25. });
  26. })();

QingJ © 2025

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