gmfetch

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

Tento skript by neměl být instalován přímo. Jedná se o knihovnu, kterou by měly jiné skripty využívat pomocí meta příkazu // @require https://update.greasyfork.org/scripts/422172/903521/gmfetch.js

Autor
PotatoDiet
Verze
1.0
Vytvořeno
22. 02. 2021
Aktualizováno
22. 02. 2021
Licence
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());
})();