Sample User Script

A simple user script that modifies a webpage's background color.

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

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

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 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         Sample User Script
// @namespace    http://example.com/
// @version      1.0
// @description  A simple user script that modifies a webpage's background color.
// @author       Your Name
// @license      MIT
// @match        https://example.com/*
// @grant        none
// @require      http://example.com/library.js
// ==/UserScript==

(function() {
    'use strict';

    // This script will change the background color of the webpage to blue.
    document.body.style.backgroundColor = 'blue';

    // Disclosure: This script does not track users or display ads.
    // However, if you are concerned about external content, you can inspect the script's source for full transparency.

    // Reason for being a script: This script provides functionality to modify the background color of a page in real-time.
})();