Greasy Fork is available in English.

gmfetch

A shim for using GM.xmlHttpRequest with a fetch-like API.

Tento skript by nemal byť nainštalovaný priamo. Je to knižnica pre ďalšie skripty, ktorú by mali používať cez meta príkaz // @require https://update.greasyfork.org/scripts/422172/903521/gmfetch.js

Autor
PotatoDiet
Verzia
1.0
Vytvorené
22.02.2021
Aktualizované
22.02.2021
Licencia
GPL-3.0

Usage

Metablock

@require https://greasyfork.org/scripts/422172-gmfetch/code/gmfetch.js
@grant   GM.xmlHttpRequest

Code

(async () => {
  // https://developer.mozilla.org/en-US/docs/Web/API/Response
  const res = await gmfetch("https://google.com");
  console.log(await res.text());
})();