Bit.ly Auto Skip

Automatically clicks the "continue to destination" button

  1. // ==UserScript==
  2. // @name Bit.ly Auto Skip
  3. // @namespace https://spin.rip/
  4. // @version 2025-02-14
  5. // @description Automatically clicks the "continue to destination" button
  6. // @author Spinfal
  7. // @match https://bit.ly/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=bit.ly
  9. // @grant none
  10. // @license MIT
  11. // @run-at document-start
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16.  
  17. //window.onload = () => {
  18. const check = setInterval(() => {
  19. if (document?.getElementById("action:continue")) {
  20. document.getElementById("action:continue").click();
  21. clearInterval(check);
  22. }
  23. }, 25);
  24. //}
  25. })();