Last active
September 28, 2025 08:28
-
-
Save FreePhoenix888/67f942e4996297334df4287e19b1638a to your computer and use it in GitHub Desktop.
Add all suggested meets to watcher
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
| // Paste this in your browser console | |
| const suggestedAddButton = document.querySelectorAll('.suggestion__accept-btn') | |
| for (let button of suggestedAddButton) { | |
| button.click() | |
| } | |
| // BE CAREFUL! Make sure you have only 1 project suggesion when clicking "Add" button | |
| const searchListElementArray = [...document.body.querySelectorAll('.list-element')] | |
| for (let searchListElement of searchListElementArray) { | |
| searchListElement.click() | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment