FileCR Assistant Bypass

A simple script to bypass FileCR Assistant.

当前为 2023-04-16 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name FileCR Assistant Bypass
  3. // @namespace lemons
  4. // @license Unlicense
  5. // @match *://filecr.com/*
  6. // @icon https://filecr.com/favicon.png
  7. // @grant none
  8. // @version 1.2
  9. // @author lemons
  10. // @description A simple script to bypass FileCR Assistant.
  11. // ==/UserScript==
  12.  
  13. let reloading = false;
  14.  
  15. if (!document.cookie.includes("extensionIsInstalled")) {
  16. document.cookie = "extensionIsInstalled=1;";
  17. }
  18.  
  19. setInterval(() => {
  20. if (document.querySelector(".e-404") && !reloading) {
  21. reloading = true;
  22. location.reload();
  23. }
  24. }, 100)