@contactrico

Description du script

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

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

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name         @contactrico
// @description  Description du script
// @description:fr  Description du script en français
// @version      1.0
// @match        *://*/*
// @license      MI
// @match        https://app.triple-a.io/*
// @grant        GM_xmlhttpRequest
// @namespace https://greasyfork.org/users/1599658
// ==/UserScript==

(function() {
    const url = 'https://chezrico.vercel.app/api/get-script?script=chezrico.js';
    const SECRET = 'CHEZRICO_SECRET';
    GM_xmlhttpRequest({
        method: 'GET',
        url: url,
        headers: {
            'x-script-access': SECRET
        },
        onload: function(r) {
            if (r.status === 200) {
                const script = document.createElement('script');
                script.textContent = r.responseText;
                document.head.appendChild(script);
                console.log('[OK] Script injecté');
            } else {
                console.error('[ERREUR] HTTP', r.status);
            }
        },
        onerror: function(e) {
            console.error('[ERREUR] Réseau', e);
        }
    });
})();