Example Safe User Script

This script highlights all links on a webpage by changing their background color to yellow.

Verze ze dne 22. 04. 2025. Zobrazit nejnovější verzi.

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!)

// ==UserScript==
// @name         Example Safe User Script
// @namespace    https://www.example.com/
// @version      1.0
// @description  This script highlights all links on a webpage by changing their background color to yellow.
// @author       Your Name
// @match        https://www.example.com/*
// @grant        none
// @license      MIT
// @antifeature  none
// ==/UserScript==

(function() {
    'use strict';

    // Add a simple feature to highlight all links on the page
    const links = document.querySelectorAll('a');
    
    links.forEach(link => {
        link.style.backgroundColor = 'yellow';
    });
    
    console.log("All links have been highlighted!");
})();