OfirApps
@OfirApps
❤
Moon
1
Tired of the new ReplIt editor?
Tired of constantly needing to replace the url with ?monaco=1 ???
Well, I've made a UserScript for that!
Simply download the user script and it will replace the URL for you!
The userscript
> The script will detect if the url is a repl
> The script will detect and properly replace the url if the url has #file on it.
> That's literally it.
Thanks, Ofir4
1
1
hello, im looking a long time for the answer and i cant find it anywere (How to send https get request on js and show it to the user.)
ruiwenge2 you can use the fetch API:
fetch("URL", {
method:"GET"
}).then(response => response.text()).then(response => alert(response));
replace URL with the url you want to get the request from. you can do whatever you want with the response. I hope this helps!2 years ago