嘿伙计们/姑娘们,我刚刚发现了用户脚本的魅力,我想创建一个。从有限数量的在线教程中,我设法想出了这个。
// ==UserScript==
// @name My add on
// @description A script that adds a green div to the bottom of the page
// @include http://*
// @grant none
// ==/UserScript==
function createDiv(){
var userBar=document.createElement('DIV');
var userBar.style.height='80px';
var userBar.style.width='100%';
var userBar.style.backgroundColor='green';
document.body.appendChild(userBar);
}
createDiv();
这只是一个在页面底部添加绿色 div 的测试脚本。不幸的是,它在实施时什么都不做。