您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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.
- })();