GM_request

GM_xmlhttpRequest 的 Promise 封装,并增加 retry 功能

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/565272/1749537/GM_request.js

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

Autor
ssnangua
Verze
0.0.1.20260205214102
Vytvořeno
05. 02. 2026
Aktualizováno
05. 02. 2026
Size
1,1 KB
Licence
neuvedeno

需要在主脚本引入 GM_xmlhttpRequest

// @grant        GM_xmlhttpRequest

使用:

GM_request({
  // ...其他 GM_xmlhttpRequest 参数
  maxRetries: 5, // 重试次数
  // 重试回调
  onretry(details) {
    console.warn(
      `请求失败,正在重试:${details.currentRetry}/${details.maxRetries}`,
    );
  },
}).then((res) => {
  console.log(res.response);
});