写一个油猴脚本,功能是在网页中插入一个按钮
时间: 2023-03-02 21:20:16 浏览: 290
可以使用以下代码编写一个简单的油猴脚本,以在网页中插入一个按钮:
```
// ==UserScript==
// @name 插入按钮脚本
// @namespace http://tampermonkey.net/
// @version 1.0
// @description 在网页中插入一个按钮
// @author Your Name
// @match https://www.example.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var button = document.createElement("button");
button.innerHTML = "按钮";
document.body.appendChild(button);
})();
```
请将 `https://www.example.com/*` 替换为你想要插入按钮的网站的 URL。在脚本运行后,它将在页面中插入一个名为“按钮”的按钮。
相关问题
写一个油猴脚本,功能是在网页中插入一个宽为100,高为100的按钮
好的,以下是一个简单的油猴脚本,可以在网页中插入一个宽为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的按钮。
写一个油猴脚本,功能是在网页中插入一个宽为100,高为100的按钮 按钮绑定一个方法 方法输出123
好的,以下是一个能够在网页中插入一个宽为100,高为100的按钮,并且点击按钮时会输出123的油猴脚本:
```javascript
// ==UserScript==
// @name Add button with function to page
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Add button to page with width 100 and height 100, and bind a function to it that logs '123'
// @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!';
// Bind a function that logs '123' to the button's click event
button.onclick = function() {
console.log('123');
}
// Append the button to the body of the page
document.body.appendChild(button);
})();
```
你可以将这段代码复制到一个新建的油猴脚本中,然后保存并安装它。在你想要添加按钮的网页中,你应该能够看到一个宽为100,高为100的按钮。当你点击这个按钮时,控制台应该会输出'123'。
阅读全文