A simple user script that modifies a webpage's background color.
נכון ליום
// ==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.
})();