Auto Skip Ad Gartic

Auto Skip Ad in Gartic

  1. // ==UserScript==
  2. // @name Auto Skip Ad Gartic
  3. // @namespace https://greasyfork.org/users/1220697
  4. // @version 1.0
  5. // @license none
  6. // @description Auto Skip Ad in Gartic
  7. // @author STRAGON
  8. // @match *://gartic.io/*
  9. // @grant none
  10. // @icon https://cdn.imgurl.ir/uploads/x049596_photo_2025-04-03_23-14-27.jpg
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. setInterval(() => {
  16. const button = document.querySelector('#popUp #videoContainer #gphone button');
  17. if (button) {
  18. console.log('یافت شد');
  19. button.style.color = 'red';
  20. button.click();
  21. }
  22. }, 1000);
  23. })();