Website Executor

Website Executor like Xeno

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

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

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Website Executor
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Website Executor like Xeno
// @match        *://*/*
// @grant        GM_addStyle
// ==/UserScript==

(function() {
    'use strict';

    // Add custom style
    GM_addStyle(`
        #executorWindow {
            position: fixed;
            top: 20px;
            left: 20px;
            width: 600px;
            height: 400px;
            background-color: #1e1e1e;
            color: #fff;
            border: 1px solid #00ffff;
            box-shadow: 0 0 10px #00ffff;
            z-index: 1000;
        }

        #titleBar {
            background-color: #333;
            padding: 10px;
            cursor: move;
            display: flex;
            justify-content: space-between;
        }

        #contentArea {
            padding: 10px;
        }

        #codeEditor {
            width: 100%;
            height: 300px;
            background-color: #222;
            color: #fff;
            border: none;
            padding: 5px;
            font-family: monospace;
        }

        #bottomBar {
            background-color: #333;
            padding: 10px;
            display: flex;
            justify-content: space-around;
        }

        #bottomBar button {
            background-color: #444;
            color: #fff;
            border: none;
            padding: 5px 10px;
            cursor: pointer;
        }
    `);

    // Create the executor window
    const executorWindow = document.createElement('div');
    executorWindow.id = 'executorWindow';
    document.body.appendChild(executorWindow);

    // Title bar
    const titleBar = document.createElement('div');
    titleBar.id = 'titleBar';
    titleBar.textContent = 'Website Executor';
    executorWindow.appendChild(titleBar);

    // Content area
    const contentArea = document.createElement('div');
    contentArea.id = 'contentArea';
    executorWindow.appendChild(contentArea);

    // Code editor
    const codeEditor = document.createElement('textarea');
    codeEditor.id = 'codeEditor';
    contentArea.appendChild(codeEditor);

    // Bottom bar
    const bottomBar = document.createElement('div');
    bottomBar.id = 'bottomBar';
    executorWindow.appendChild(bottomBar);

    // Buttons
    const buttons = ['Settings', 'Open', 'Save', 'Clear', 'Run'];
    buttons.forEach(text => {
        const button = document.createElement('button');
        button.textContent = text;
        bottomBar.appendChild(button);
    });

    // Make the window draggable
    let pos1 = 0, pos2 = 0, pos3 = 0, pos4 = 0;
    titleBar.onmousedown = dragMouseDown;

    function dragMouseDown(e) {
        e = e || window.event;
        e.preventDefault();
        pos3 = e.clientX;
        pos4 = e.clientY;
        document.onmouseup = closeDragElement;
        document.onmousemove = elementDrag;
    }

    function elementDrag(e) {
        e = e || window.event;
        e.preventDefault();
        pos1 = pos3 - e.clientX;
        pos2 = pos4 - e.clientY;
        pos3 = e.clientX;
        pos4 = e.clientY;
        executorWindow.style.top = (executorWindow.offsetTop - pos2) + "px";
        executorWindow.style.left = (executorWindow.offsetLeft - pos1) + "px";
    }

    function closeDragElement() {
        document.onmouseup = null;
        document.onmousemove = null;
    }
})();