FreeGOGPcGames Timer Bypass

Script to bypass the timer on the FreeGogPcGames download page website.

当前为 2023-05-31 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name FreeGOGPcGames Timer Bypass
  3. // @license MIT
  4. // @namespace Violentmonkey Scripts
  5. // @version 1.0
  6. // @description Script to bypass the timer on the FreeGogPcGames download page website.
  7. // @author Wizzergod
  8. // @match http*://*.freegogpcgames.*/download-gen.php?url=*
  9. // @icon https://www.google.com/s2/favicons?sz=64&domain=freegogpcgames.xyz
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13.  
  14. (function() {
  15. 'use strict';
  16.  
  17. // Находим элемент с id "DLINK"
  18. var divElement = document.getElementById('DLINK');
  19.  
  20. // Заменяем класс элемента на "fade-in"
  21. if (divElement) {
  22. divElement.classList.remove('hide');
  23. divElement.classList.add('fade-in');
  24. }
  25. })();