Youtube Comment History batch Delete

use it to delete your youtube comment history at https://myactivity.google.com/page?hl=en&page=youtube_comments

  1. // ==UserScript==
  2. // @name Youtube Comment History batch Delete
  3. // @namespace
  4. // @match https://myactivity.google.com/*
  5. // @grant none
  6. // @version 1.2
  7. // @author wayhee
  8. // @description use it to delete your youtube comment history at https://myactivity.google.com/page?hl=en&page=youtube_comments
  9. // @namespace
  10. // ==/UserScript==
  11. (function () {
  12. 'use strict';
  13. var clicker = function () {
  14. var e = document.querySelectorAll('.YxbmAc .yHy1rc')[Math.random() * 100 >= 50 ? 0 : 1];
  15. if (e) {
  16. console.log("Clicked", e);
  17. e.click();
  18. } else {
  19. console.log("No Button found");
  20. }
  21. };
  22. window.setInterval(clicker, 5000);
  23. })();