Sample User Script

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

12.04.2025 itibariyledir. En son verisyonu görün.

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

(Zateb bir user-style yöneticim var, yükleyeyim!)

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