0.1.15 • Published 10 months ago

@trim21/gm-fetch v0.1.15

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

fetch for UserScript

using fetch based on GM.xmlHttpRequest in userscript.

Don't forget to add @grant GM.xmlHttpRequest and @connect in your metadata

Introduction

It's not 100% same with fetch API because some security limit like cors site request doesn't exist on GM.xmlHttpRequest.

And AbortSignal is not supported very well due to the limitation of GM.xmlHttpRequest.

You can set some HTTP headers allowed by GM.xmlHttpRequest but not allowed by standard fetch API.

Example

// ==UserScript==
// @name        new user script
// @version     0.0.1
// @match       http*://*/*
// @grant       GM.xmlHttpRequest
// @require     https://cdn.jsdelivr.net/npm/@trim21/gm-fetch
// @run-at      document-end
// @connect     httpbin.org
// ==/UserScript==

async () => {
  const res = await GM_fetch("https://httpbin.org/headers", { method: "POST" });
  const data = await res.json();
  console.log(data);
};

if you are using js bundler

ES Module:

import GM_fetch from "@trim21/gm-fetch";

CommonJS (not recommended):

const GM_fetch = require("@trim21/gm-fetch");

Browser Compatibility

This package is using Request and Response class, it so requires a browser with fetch API support.

Licence

MIT

0.1.15

10 months ago

0.1.14

12 months ago

0.1.13

1 year ago

0.1.11

1 year ago

0.1.12

1 year ago

0.1.10

1 year ago

0.1.0

2 years ago

0.1.2

2 years ago

0.1.1

2 years ago

0.1.8

1 year ago

0.1.7

2 years ago

0.1.9

1 year ago

0.1.4

2 years ago

0.1.3

2 years ago

0.1.6

2 years ago

0.1.5

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago