FileCR Bypass

a threeliner to bypass FileCR premium

目前為 2023-03-23 提交的版本,檢視 最新版本

  1. // ==UserScript==
  2. // @name FileCR Bypass
  3. // @namespace james_willer
  4. // @match *://filecr.com/*
  5. // @icon https://filecr.com/wp-content/uploads/2018/11/favico.png
  6. // @version 1.0
  7. // @description a threeliner 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. }