Created
June 28, 2025 20:59
-
-
Save 3nws/a4471956f385970115e3342f49f595c9 to your computer and use it in GitHub Desktop.
Deletes screenshots from steam cloud.
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 manageButton = document.querySelector("#ScreenshotManagementToggle"); | |
| manageButton.click(); | |
| const profileMediaItems = document.querySelectorAll(".profile_media_item"); | |
| profileMediaItems.forEach((node) => OnScreenshotClicked(node.getAttribute("data-publishedfileid"))); | |
| ConfirmBatchAction('delete'); | |
| $('BatchScreenshotManagement').submit(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment