您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Changes a large portion of the text and UI to 'Elite' blue and makes small changes to the UI.
当前为
// ==UserScript== // @name Pendorian Elite UI // @namespace http://pendoria.net/ // @version 1.2 // @author Puls3 (From Pendoria) // @include http*://*pendoria.net* // @grant none // @description Changes a large portion of the text and UI to 'Elite' blue and makes small changes to the UI. // ==/UserScript== //Version 1.1 - Removed dungeon text. //Version 1.2 // - Added Favicon. // - Fixed match & switched to include. // - Turned inventory '!' to blue. // - Fixed namespace. //Made by Puls3 //It's very easy to edit! //If cloned please give credit! var head = document.getElementsByTagName('head')[0]; head.insertAdjacentHTML("afterend", ` <link rel="icon" href="https://xer0-puls3.github.io/assets/images/favicon.ico" type="image/x-icon"/> <style> /* CHAT CSS BELOW */ .chat-username { color: rgb(0, 153, 255) !important; } /* UI CSS Below */ .green { background-color: rgb(0, 153, 255) !important; } #expwidth { background-color: rgb(0, 153, 255) !important; } #profile, #menu, #stats-hourly { top: -50px; background-color: rgba(0,0,0,0) !important; background-image: linear-gradient(to bottom, rgba(0,0,0,0.6) , rgba(0,0,0,0.3)) !important; } #logo { display: none; } #quest_done { color: rgb(0, 153, 255); } #quest_prog { color: rgb(0, 153, 255); } #event { color: rgb(0, 153, 255) !important; } quest_abandon { background-color: rgb(0, 153, 255) !important; } button { background: rgba(0, 153, 255,0.5) !important; } invinfo { color: rgb(0, 153, 255) !important; } /* TS CSS BELOW */ #gainedres { color: rgb(0, 153, 255) !important; } #gainedtype { color: rgb(0, 153, 255) !important; } #guild_currency { color: rgb(0, 153, 255) !important; } #guild_amount { color: rgb(0, 153, 255) !important; } #quint span { color: rgb(0, 153, 255) !important; } .actionexperience, .actionexperience span { color: rgb(0, 153, 255) !important; } #double_tradeskill span { color: rgb(0, 153, 255) !important; } /* DUNGEON CSS BELOW */ #dungeon-dialogue { display: none; } /* COMBAT CSS BELOW */ .timeshit, .timescrit, .timesdodged, .hitstaken, #gainedgold, .actiongold, #guild_gold { color: rgb(0, 153, 255) !important; } #double_battle span { color: rgb(0, 153, 255) !important; } </style> `);