Verify script with gold/yellow checkmark background
// ==UserScript==
// @name Verify kour.io(Gold Check)
// @namespace Strange_carrot
// @version 0.2
// @description Verify script with gold/yellow checkmark background
// @author Snomy
// @license CC BY-ND 4.0
// @match https://kour.io/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Force the blue verification check to appear gold/yellow instead
const style = document.createElement("style");
style.textContent = `
/* Common classnames/sites use for the verified check icon */
.verify-badge,
.verified-icon,
.badge-verified,
.user-verified,
.fa-check,
svg[fill="#1DA1F2"], /* typical blue fill */
svg[style*="blue"],
path[fill="#1DA1F2"] {
background-color: #FFD700 !important; /* gold */
fill: #FFD700 !important;
color: #FFD700 !important;
}
`;
document.head.appendChild(style);
// --- keep the rest of your code unchanged ---
// (popup, draggable menu, buttons, verify toggles...)
// Funktion zum Einblenden des Popups
function showPopup() {
const popup = document.createElement('div');
popup.innerHTML = `
<div id="popup" style="position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); background-color: white; padding: 20px; border: 2px solid black; border-radius: 10px; z-index: 10000;">
<p>Please join the Discord to use this script</p>
<button id="discordButton" style="display: block; width: 100px; margin: 0 auto; padding: 10px; background-color: blue; color: white; text-decoration: none; border-radius: 5px;">OK</button>
</div>
`;
document.body.appendChild(popup);
document.getElementById('discordButton').addEventListener('click', function() {
window.open('https://discord.gg/fGmYbhZAnN', '_blank');
document.getElementById('popup').remove();
});
}
window.addEventListener('load', function() {
showPopup();
});
// (rest of your menu/verifyUserOnButton code unchanged…)
})();