IDK

Adds a stylish button to the page that redirects you to a Rickroll link when clicked

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

Autor
Joshua Francisco
Denně instalací
0
Celkem instalací
7
Hodnocení
0 0 0
Verze
3.5
Vytvořeno
07. 02. 2024
Aktualizováno
07. 02. 2024
Size
2,2 KB
Licence
neuvedeno
Spustit na
všech stránkách

// ==UserScript==
// @name RICKROLL
// @namespace http://tampermonkey.net/
// @version 3.5
// @description Adds a stylish button to the page that redirects you to a Rickroll link when clicked
// @author Joshua
// @match *://*/*
// @grant none
// @license MIT
// ==/UserScript==

(function() {
'use strict';

function redirectToRickroll() {
window.location.href = 'https://www.youtube.com/watch?v=dQw4w9WgXcQ';
}

// Check if the current page URL is the Rickroll link
if (window.location.href !== 'https://www.youtube.com/watch?v=dQw4w9WgXcQ') {
console.log('Creating button...');
var button = document.createElement('button');
button.textContent = 'Click here for a surprise!';
button.style.position = 'fixed';
button.style.top = '50%';
button.style.left = '50%';
button.style.transform = 'translate(-50%, -50%)';
button.style.zIndex = '9999';
button.style.padding = '15px 30px';
button.style.border = 'none';
button.style.backgroundColor = '#ff0000';
button.style.color = '#ffffff';
button.style.fontFamily = 'Arial, sans-serif';
button.style.fontSize = '18px';
button.style.fontWeight = 'bold';
button.style.borderRadius = '10px';
button.style.boxShadow = '0px 4px 8px rgba(0, 0, 0, 0.3)';
button.style.cursor = 'pointer';
button.style.transition = 'transform 0.2s, box-shadow 0.2s';

button.addEventListener('mouseenter', function() {
button.style.transform = 'translate(-50%, -50%) scale(1.05)';
button.style.boxShadow = '0px 8px 16px rgba(0, 0, 0, 0.3)';
});

button.addEventListener('mouseleave', function() {
button.style.transform = 'translate(-50%, -50%)';
button.style.boxShadow = '0px 4px 8px rgba(0, 0, 0, 0.3)';
});

button.addEventListener('click', function(event) {
event.preventDefault(); // Prevent default button click action
redirectToRickroll(); // Redirect to the Rickroll link
button.remove(); // Remove the button
});

console.log('Appending button to document...');
document.body.appendChild(button);
console.log('Button creation complete.');
}

// Additional information
console.log('IDK script loaded.');

// Usage instructions
console.log('To use this script, simply click on the "Click here for a surprise!" button that appears on the page.');

// Changelog
console.log('Changelog:');
console.log('Version 3.5:');
console.log('- Added stylish button with improved design.');

// End of script
})();