Skip to content

Instantly share code, notes, and snippets.

@FreePhoenix888
Last active September 28, 2025 08:28
Show Gist options
  • Select an option

  • Save FreePhoenix888/67f942e4996297334df4287e19b1638a to your computer and use it in GitHub Desktop.

Select an option

Save FreePhoenix888/67f942e4996297334df4287e19b1638a to your computer and use it in GitHub Desktop.
Add all suggested meets to watcher
// 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