FANZAキャッチ 常時表示

FANZAキャッチのクレーンゲーム画面を常時表示します

// ==UserScript==
// @name         FANZAキャッチ 常時表示
// @namespace    http://tampermonkey.net/
// @version      2024-03-16
// @description  FANZAキャッチのクレーンゲーム画面を常時表示します
// @author       fitudao3788
// @match        https://catch.dmm.co.jp/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=dmm.co.jp
// @grant        none
// @require      https://cdn.jsdelivr.net/npm/xhook@1.6.2/dist/xhook.min.js
// @license      Apache-2.0
// ==/UserScript==

(function() {
    'use strict';

    xhook.after((req, res) => {
        if(req.url.match(/^https:\/\/api\.catch\.dmm\.co\.jp\/api\/(crane|play)\//)) {
            let resData = JSON.parse(res.text);
            resData.data.station.status = 3;
            res.text = JSON.stringify(resData);
        }
    });
})();