FileCR Assistant Bypass

A simple script to bypass FileCR Assistant.

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

// ==UserScript==
// @name        FileCR Assistant Bypass
// @namespace   lemons
// @license     Unlicense
// @match       *://filecr.com/*
// @icon        https://filecr.com/favicon.png
// @grant       none
// @version     1.2
// @author      lemons
// @description A simple script to bypass FileCR Assistant.
// ==/UserScript==

let reloading = false;

if (!document.cookie.includes("extensionIsInstalled")) {
  document.cookie = "extensionIsInstalled=1;";
}

setInterval(() => {
  if (document.querySelector(".e-404") && !reloading) {
    reloading = true;
    location.reload();
  }
}, 100)