Skip to content

Latest commit

 

History

History
45 lines (35 loc) · 2.24 KB

File metadata and controls

45 lines (35 loc) · 2.24 KB

UnrealFabAssistant

简体中文 | English

Automatically add all free resources from Fab to your account.(You can run it once in a while to automatically add the latest free resources)

Note: The code has only been tested on Chrome, it is best to use Chrome directly.

How to use

Method 1

  1. Open Tampermonkey Settings-Utilities.
  2. Paste the following link in Install from URL to import.
  3. Open Fab, click Start in the small window in the lower right corner, and wait for completion.
https://raw.githubusercontent.com/RyensX/UnrealFabAssistant/refs/heads/main/tampermonkey.js

Method 2

  1. Open Fab and login.
  2. Click F12 to open the debugger and switch to the Console tab.
  3. Copy and paste the following code and press Enter to wait for the end.
fetch('https://raw.githubusercontent.com/RyensX/UnrealFabAssistant/refs/heads/main/run.js').then(r=>r.text()).then(t=>document.head.append(Object.assign(document.createElement('script'),{textContent:t})))

Method 3

  1. Open run.js and copy all the code to the clipboard.
  2. Open Fab and login.
  3. Press F12 to open the debugger and switch to the Console tab.
  4. Paste the code you just copied into the input box and press Enter.
  5. Wait for the log to be printed is complete.

Known issues

  • Too many requests prompt "Too many requests".
  • If all storage has been completed, ignore it.
  • If not, wait a few minutes and try again.

Acknowledgements

Others

  1. If it helps you, please click ⭐ in the upper right corner to support it. Thank you for using it.
  2. If you reprint it, please indicate the original source https://github.com/RyensX/UnrealFabAssistant
  3. The default fast mode searches for items in descending order of time. If there are no items that can be added for more than 3 pages, it is considered that there are no new items in the category. This may miss some old resources that are suddenly free, but it is convenient to frequently and quickly get free resources. If you need to turn off the fast mode, you can execute window.fastMode=false in the console before running the code