Viewer Esaly

Bot Panel for gartic.io

当前为 2024-08-19 提交的版本,查看 最新版本

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

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

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name           Viewer Esaly
// @name:tr        made by STRAGON
// @name:az        STRAGON
// @namespace    http://tampermonkey.net/
// @description    Bot Panel for gartic.io
// @description:tr Bot Panel for gartic.io (in Turkish)
// @description:az Bot Panel for gartic.io (in Azerbaijani)
// @version        1
// @author         frio
// @license        MIT
// @match          *://gartic.io/*
// @match          *://*/*?__cpo=aHR0cHM6Ly9nYXJ0aWMuaW8
// @icon           https://static.cdnlogo.com/logos/s/96/st.svg
// @grant          GM_setValue
// @grant          GM_getValue
// @grant          GM_addValueChangeListener
// @grant          GM_addStyle
// @namespace *
// ==/UserScript==

var panel = document.createElement("div");
panel.style.position = "fixed";
panel.style.top = "20px";
panel.style.right = "20px";
panel.style.width = "260px";
panel.style.height = "30px";
panel.style.backgroundColor = "#000";
panel.style.borderRadius = "10px";
panel.style.padding = "8px";
panel.style.zIndex = "1000";
panel.style.textAlign = "center";
panel.style.border = "2px solid red";

var linkInput = document.createElement("input");
linkInput.type = "text";
linkInput.placeholder = "Enter link ...";
linkInput.style.width = "70%";
linkInput.style.borderRadius = "5px";
panel.appendChild(linkInput);


var btn1 = document.createElement("button");
btn1.style.backgroundColor = "#FF0000";
btn1.style.color = "#fff";
btn1.style.border = "none";
btn1.style.padding = "7px 0px";
btn1.style.borderRadius = "5px";
btn1.style.cursor = "pointer";
btn1.textContent = "Viewer";
btn1.style.width = "25%";
btn1.style.marginLeft = "5px";


panel.appendChild(btn1);

btn1.addEventListener("click", function() {
var link = linkInput.value;
var newlink = link+"/viewer";
window.open(newlink, '_blank');
});


let html=`


`

document.body.appendChild(panel);