Greasy Fork is available in English.

gmfetch

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

Este script não deve ser instalado diretamente. Este script é uma biblioteca de outros scripts para incluir com o diretório meta // @require https://update.greasyfork.org/scripts/422172/903521/gmfetch.js

Autor
PotatoDiet
Versão
1.0
Criado
22/02/2021
Atualizado
22/02/2021
Licença
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());
})();