你好,我是喵喵侠。今天我将为你介绍一个非常实用的油猴脚本,可以帮助你快速打开多个粘贴的网址链接。在日常工作中,我们可能会遇到需要批量打开多个网页的情况,如果手动逐个打开,不仅耗时费力,而且容易出错。为了提高效率,我们可以利用油猴脚本来自动化这一过程。
油猴脚本(Tampermonkey Script)是一种浏览器扩展,允许用户在浏览网页时运行自定义的JavaScript代码。通过油猴脚本,我们可以添加新功能、修改网页内容、自动化一些重复性操作,极大地提升浏览器的使用体验。
这个脚本的主要功能是:
以下是这个油猴脚本的代码,我会在代码中逐步解释每个部分的功能。如果你有更好的代码写法或优化建议,欢迎提出。
// ==UserScript==
// @name 快速打开粘贴的多个网址
// @namespace http://tampermonkey.net/
// @version 0.3
// @description 批量打开多个网址,支持设置时间间隔
// @author 喵喵侠
// @match *://*/*
// @grant none
// @run-at context-menu
// ==/UserScript==
(function () {
'use strict';
// 创建主容器
var div = document.createElement("div");
div.style.cssText = "position:fixed;top:0;right:0;bottom:0;left:0;margin:auto;z-index:99999;width:800px;height:600px;background:rgba(0,0,0,0.8);display:flex;flex-direction:column;justify-content:center;align-items:center;padding:20px;border-radius:10px;";
// 创建文本框
var textarea = document.createElement("textarea");
textarea.style.cssText = "width:100%;height:300px;padding:10px;margin-bottom:10px;font-size:16px;border-radius:5px;border:1px solid #ccc;";
// 创建打开按钮
var btn = document.createElement("button");
btn.innerHTML = "全部跳转!";
btn.style.cssText = "padding:10px 20px;margin:5px;background-color:#4CAF50;color:white;border:none;border-radius:5px;cursor:pointer;font-size:16px;";
// 创建关闭按钮
var close_btn = document.createElement("button");
close_btn.innerHTML = "关闭";
close_btn.style.cssText = "padding:10px 20px;margin:5px;background-color:#f44336;color:white;border:none;border-radius:5px;cursor:pointer;font-size:16px;";
// 创建时间间隔输入框
var time_input = document.createElement("input");
time_input.type = "number";
time_input.value = "500";
time_input.style.cssText = "width:60px;padding:10px;margin:5px;font-size:16px;border-radius:5px;border:1px solid #ccc;text-align:center;";
// 将元素添加到主容器
div.appendChild(textarea);
div.appendChild(btn);
div.appendChild(close_btn);
div.appendChild(time_input);
// 将主容器添加到body
document.body.appendChild(div);
// 打开按钮点击事件
btn.onclick = function () {
var urls = textarea.value.split("\n").filter(url => url.trim() !== ""); // 过滤空行
for (let i = 0; i < urls.length; i++) {
setTimeout(() => {
window.open(urls[i].trim());
}, i * time_input.value); // 使用索引*i*时间间隔,避免一次性打开太多页面
}
document.body.removeChild(div);
};
// 关闭按钮点击事件
close_btn.onclick = function () {
document.body.removeChild(div);
};
})();
如果你想直接安装使用,可以访问我的脚本地址:
这一部分定义了脚本的基本信息,包括名称、版本、描述、作者以及匹配的URL模式。
// ==UserScript==
// @name 快速打开粘贴的多个网址
// @namespace http://tampermonkey.net/
// @version 0.2
// @description 批量打开多个网址,支持设置时间间隔
// @author 喵喵侠
// @match *://*/*
// @grant none
// @run-at context-menu
// ==/UserScript==
var div = document.createElement("div");
div.style.cssText = "position:fixed;top:0;right:0;bottom:0;left:0;margin:auto;z-index:99999;width:800px;height:600px;background:rgba(0,0,0,0.8);display:flex;flex-direction:column;justify-content:center;align-items:center;padding:20px;border-radius:10px;";
var textarea = document.createElement("textarea");
textarea.style.cssText = "width:100%;height:300px;padding:10px;margin-bottom:10px;font-size:16px;border-radius:5px;border:1px solid #ccc;";
var btn = document.createElement("button");
btn.innerHTML = "全部跳转!";
btn.style.cssText = "padding:10px 20px;margin:5px;background-color:#4CAF50;color:white;border:none;border-radius:5px;cursor:pointer;font-size:16px;";
var close_btn = document.createElement("button");
close_btn.innerHTML = "关闭";
close_btn.style.cssText = "padding:10px 20px;margin:5px;background-color:#f44336;color:white;border:none;border-radius:5px;cursor:pointer;font-size:16px;";
var time_input = document.createElement("input");
time_input.type = "number";
time_input.value = "500";
time_input.style.cssText = "width:60px;padding:10px;margin:5px;font-size:16px;border-radius:5px;border:1px solid #ccc;text-align:center;";
btn.onclick = function () {
var urls = textarea.value.split("\n").filter(url => url.trim() !== ""); // 过滤空行
for (let i = 0; i < urls.length; i++) {
setTimeout(() => {
window.open(urls[i].trim());
}, i * time_input.value); // 使用索引*i*时间间隔,避免一次性打开太多页面
}
document.body.removeChild(div);
};
close_btn.onclick = function () {
document.body.removeChild(div);
};
在这段代码中,我们已经加入了时间间隔功能,默认间隔为500毫秒(用户可以自行调整)。这样可以防止浏览器一次性打开太多标签页导致崩溃。如果你有更好的优化建议,欢迎提出。
通过这个油猴脚本,我们可以轻松地批量打开多个粘贴的网址链接,提高工作效率,并避免浏览器崩溃。希望本文能帮助你更好地利用油猴脚本,来优化日常工作流程。如果你有任何问题或建议,欢迎与我交流。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。