您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
ты больше не армянин
// ==UserScript== // @name SchalkerMap bypass // @namespace http://tampermonkey.net/ // @version 0.2 // @description ты больше не армянин // @author erxson // @match https://secretlink.schalker.ru/* // @icon https://www.google.com/s2/favicons?sz=64&domain=schalker.ru // @grant none // @run-at document-idle // ==/UserScript== (function() { 'use strict'; // Создание карты var mapContainer = document.createElement("main"); mapContainer.id = "app"; mapContainer.setAttribute("aria-hidden", "true"); document.body.appendChild(mapContainer); var indexjs = document.createElement("script"); indexjs.setAttribute("type", "module"); indexjs.setAttribute("src", "./live-atlas/assets/index.a82d2095.js"); document.body.appendChild(indexjs); var vendorjs = document.createElement("link"); vendorjs.setAttribute("rel", "modulepreload"); vendorjs.setAttribute("href", "./live-atlas/assets/vendor.d0ab50b1.js"); document.body.appendChild(vendorjs); var css = document.createElement("style"); css.innerText = "html { font-size: 62.5%; } "; document.body.appendChild(css); // Удаление логин формы const leafletLink = document.querySelector('link[href="https://unpkg.com/[email protected]/dist/leaflet.css"]'); if (leafletLink) leafletLink.parentNode.removeChild(leafletLink); const leafletScript = document.querySelector('script[src="https://unpkg.com/[email protected]/dist/leaflet.js"]'); if (leafletScript) leafletScript.parentNode.removeChild(leafletScript); const flowbiteLink = document.querySelector('link[href="https://cdnjs.cloudflare.com/ajax/libs/flowbite/1.6.5/flowbite.min.css"]'); if (flowbiteLink) flowbiteLink.parentNode.removeChild(flowbiteLink); const tailwindScript = document.querySelector('script[src="tailwind.js"]'); if (tailwindScript) tailwindScript.parentNode.removeChild(tailwindScript); const tailwindStyle = document.getElementById('tailwind'); if (tailwindStyle) tailwindStyle.disabled = true; const loginForm = document.getElementById('login-form'); if (loginForm) loginForm.parentNode.removeChild(loginForm); })();