Small page helper script
// ==UserScript==
// @name Simple Helper Script
// @namespace https://greasyfork.org/users/your-id
// @version 1.0
// @description Small page helper script
// @author You
// @match *://*/*
// @grant none
// ==/UserScript==
(function () {
'use strict';
// Example: add a small fixed button
const btn = document.createElement('button');
btn.textContent = 'Click me';
btn.style.cssText = `
position: fixed;
bottom: 20px;
right: 20px;
z-index: 999999;
padding: 10px 14px;
border-radius: 8px;
border: none;
background: #111;
color: #fff;
cursor: pointer;
`;
btn.addEventListener('click', () => {
alert('GreasyFork script works!');
});
document.body.appendChild(btn);
})();