FileCR Bypass

A three-liner to bypass FileCR premium

  1. // ==UserScript==
  2. // @name FileCR Bypass
  3. // @namespace james_willer
  4. // @match *://filecr.com/*
  5. // @icon https://filecr.com/favicon.png
  6. // @version 1.1
  7. // @description A three-liner to bypass FileCR premium
  8. // @author James_willer
  9. // @grant none
  10. // @license Unlicense
  11. // ==/UserScript==
  12.  
  13. if (!document.cookie.includes("extensionIsInstalled")) {
  14. document.cookie = "extensionIsInstalled=true; expires=Tue, 19 Jan 2038 04:14:07 GMT; path=/;";
  15. }