Instructions for using Javascript to quickly perform tasks on galxe
Using this tip you won't need to follow, tag, or retweet
1. Access the Galxe mission you want to do
2. Press the shortcut F12 (developer tools) on the keyboard, next select the "Console" tab and paste the entire code below into the box, then press "Enter" to execute.
const elementsToClick = document.querySelectorAll('.d-flex.height-100.width-100.click-area');
const clickElement = (element) => {
const event = new MouseEvent('click', {
view: window,
bubbles: true,
cancelable: true
});
element.dispatchEvent(event);
};
elementsToClick.forEach(clickElement);
3. F5 again the website and see the results
Note: only use tips for tasks about twitter and accessing websites