FileCR Assistant Bypass

A simple script to bypass FileCR Assistant.

Pada tanggal 17 Desember 2023. Lihat %(latest_version_link).

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

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

// derived from https://greatest.deepsurf.us/en/scripts/479625-filecr-assistant-bypass-helper
window.addEventListener('message', (event) => {
  const data = {
    direction: 'from-content-script',
    responseFor: event.data.id,
    type: 'response',
  };

  if (event.data.action === 'app.info') {
    data.data = {
      id: 'cgdlgjfaminolmljfokbbienpoibhknp',
      version: '9.9.9',
    };
    window.postMessage(data);
    return;
  }
  if (event.data.id === "install-check") {
    window.postMessage(data);
    return;
  };
  if (event.data.action === "downloads.extractLink") {
    data.data = event.data.data.url;
    window.postMessage(data);
    return;
  }
});

let reloading = false;

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

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