FumbleAround/content.js
Michael Maurakis 712f350fe7 Sanity check.
It works with literally no features.
2025-01-19 17:35:31 -06:00

12 lines
No EOL
311 B
JavaScript

// Create the button
const button = document.createElement('button');
button.id = 'fumbleButton';
button.textContent = 'Fumble!';
// Add click handler
button.addEventListener('click', () => {
window.location.href = 'https://wiby.me/surprise/';
});
// Add button to page
document.body.appendChild(button);