Greasy Fork is available in English.

gmfetch

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

ეს სკრიპტი არ უნდა იყოს პირდაპირ დაინსტალირებული. ეს ბიბლიოთეკაა, სხვა სკრიპტებისთვის უნდა ჩართეთ მეტა-დირექტივაში // @require https://update.greasyfork.org/scripts/422172/903521/gmfetch.js.

ავტორი
PotatoDiet
ვერსია
1.0
შექმნილია
22.02.2021
განახლებულია
22.02.2021
Size
760 ბაიტები
ლიცენზია
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());
})();