Guest User

Untitled

a guest
Feb 17th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. if(window.location.href.indexOf("a-searchlik") > -1){
  2. let btn = document.createElement("button");
  3. btn.style.position = 'fixed';
  4. btn.style.top = '0';
  5. btn.style.left = '0';
  6. btn.style.border = '0';
  7. btn.style.background = '#2fff2f';
  8. btn.style.padding = '5px';
  9. btn.style.zIndex = '999';
  10. btn.style.cursor = 'pointer';
  11. btn.addEventListener('click', () => {
  12. setInterval(() => {
  13. document.querySelectorAll('.gbut_grd_pink')[0].click()
  14. }, 1000);
  15. });
  16. let t = document.createTextNode("auto click");
  17. btn.appendChild(t);
  18. document.body.appendChild(btn);
  19. }
Add Comment
Please, Sign In to add comment