写一个油猴脚本,功能是在网页中插入一个宽为100,高为100的按钮
时间: 2024-02-26 07:54:06 浏览: 168
好的,以下是一个简单的油猴脚本,可以在网页中插入一个宽为100,高为100的按钮:
```javascript
// ==UserScript==
// @name Add button to page
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Add button to page with width 100 and height 100
// @match *://*/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Create a button element
const button = document.createElement('button');
button.style.width = '100px';
button.style.height = '100px';
button.innerText = 'Click me!';
// Append the button to the body of the page
document.body.appendChild(button);
})();
```
你可以将这段代码复制到一个新建的油猴脚本中,然后保存并安装它。在你想要添加按钮的网页中,你应该能够看到一个宽为100,高为100的按钮。
阅读全文