Sample User Script

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

נכון ליום 12-04-2025. ראה הגרסה האחרונה.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

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

(I already have a user script manager, let me install it!)

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.

(I already have a user style manager, let me install it!)

// ==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.
})();