Created
September 5, 2025 03:40
-
-
Save vitorsouzaalmeida/b1751fc8680b0d3286b4b213e94fd601 to your computer and use it in GitHub Desktop.
select and click all "delete" buttons from Youtube history page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const a = document.querySelectorAll( | |
| ".style-scope.ytd-video-renderer > .top-level-buttons.style-scope.ytd-menu-renderer > .style-scope.ytd-menu-renderer > yt-button-shape > .yt-spec-button-shape-next.yt-spec-button-shape-next--text.yt-spec-button-shape-next--mono.yt-spec-button-shape-next--size-m.yt-spec-button-shape-next--icon-only-default") | |
| a.forEach((e) => e.click()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment