Youtube Comment History batch Delete

6/22/2021, 9:08:15 PM

当前为 2021-06-24 提交的版本,查看 最新版本

// ==UserScript==
// @name        Youtube Comment History batch Delete
// @namespace   
// @match       https://myactivity.google.com/*
// @grant       none
// @version     1.0
// @author      wayhee
// @description 6/22/2021, 9:08:15 PM
// ==/UserScript==
(function () {
	'use strict';
	var clicker = function () {
		var e = document.querySelectorAll('.YxbmAc .yHy1rc')[Math.random() * 100 >= 50 ? 0 : 1];
		if (e) {
			console.log("Clicked", e);
			e.click();
		} else {
			console.log("No Button found");
		}
	};
	window.setInterval(clicker, 500);
})();