This script changes the background color of the page
Versão de:
// ==UserScript== // @name Simple Example Script // @description This script changes the background color of the page // @version 1.0 // @match https://example.com/* // @license MIT // @locale en // @namespace https://greasyfork.org/users/1541184 // ==/UserScript== // This is the actual executable code document.body.style.backgroundColor = 'lightblue';