配置宝塔key

Add a button to configure API key for IP:port URLs

2024-03-28 या दिनांकाला. सर्वात नवीन आवृत्ती पाहा.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey, Greasemonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

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

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

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

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्क्रिप्ट व्यवस्थापक एक्स्टेंशन इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्क्रिप्ट व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्टाईल व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

// ==UserScript==
// @name         配置宝塔key
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Add a button to configure API key for IP:port URLs
// @author       You
// @match        *://*/*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    // 检查当前页面是否为 IP:端口 格式
    const url = new URL(window.location.href);
    const isIpPort = /^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}:\d+$/.test(url.host);

    if (isIpPort) {
        // 创建按钮
        const button = document.createElement('button');
        button.textContent = '配置 API Key';
        button.style.position = 'fixed';
        button.style.zIndex = '9999';
        button.style.top = '10px';
        button.style.right = '10px';

        // 添加点击事件处理程序
        button.addEventListener('click', async () => {
            const apiUrl = `http://${url.host}/config?action=set_token`;

            try {
                const response = await fetch(apiUrl, {
                    headers: {
                        "accept": "*/*",
                        "accept-language": "zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6",
                        "cache-control": "no-cache",
                        "content-type": "application/x-www-form-urlencoded; charset=UTF-8",
                        "pragma": "no-cache",
                        "proxy-connection": "keep-alive",
                        "x-http-token": $("#request_token_head").attr('token'),
                        "x-requested-with": "XMLHttpRequest"
                    },
                    referrer: `http://${url.host}/config`,
                    referrerPolicy: "strict-origin-when-cross-origin",
                    body: `t_type=3&limit_addr=${url.host}`,
                    method: "POST",
                    mode: "cors",
                    credentials: "include"
                });

                const result = await response.json();
                const decodedResult = JSON.parse(JSON.stringify(result).replace(/\\/g, '\\\\').replace(/\u([0-9a-fA-F]{4})/g, '\\u$1'));
                alert(`API 响应结果:\n${JSON.stringify(decodedResult, null, 2)}`);
            } catch (error) {
                alert(`发生错误: ${error}`);
            }
        });

        // 将按钮添加到页面
        document.body.appendChild(button);
    }
})();