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
الترخيص
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());
})();