您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
在洛谷特定页面添加按钮,点击后自动填充输入框并重定向到新的URL。
// ==UserScript== // @name 洛谷历史记录搜索优化 - 查看自己的代码 // @namespace http://tampermonkey.net/ // @version 0.2 // @description 在洛谷特定页面添加按钮,点击后自动填充输入框并重定向到新的URL。 // @author OneMan // @match *://www.luogu.com.cn/record/list* // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; // 创建按钮并设置样式 const button = document.createElement('button'); button.textContent = '查看我的提交'; button.setAttribute('data-v-7ade990c', ''); button.setAttribute('data-v-0aa18cf0', ''); button.setAttribute('type', 'button'); button.className = 'lfe-form-sz-small'; button.setAttribute('data-v-d58eab22', ''); button.style.borderColor = 'rgb(52, 152, 219)'; button.style.backgroundColor = 'rgb(52, 152, 219)'; button.setAttribute('data-darkreader-inline-border-top', '#1a6394'); button.setAttribute('data-darkreader-inline-border-right', '#1a6394'); button.setAttribute('data-darkreader-inline-border-bottom', '#1a6394'); button.setAttribute('data-darkreader-inline-border-left', '#1a6394'); button.setAttribute('data-darkreader-inline-bgcolor', '#1d6fa5'); // 获取指定元素 const targetElement = document.querySelector("#app > div.main-container > main > div > section > div > section:nth-child(1) > div > div"); if (targetElement) { // 将按钮添加到指定元素后面 targetElement.parentNode.insertBefore(button, targetElement.nextSibling); } else { console.error('Target element not found'); } // 为按钮添加点击事件 button.addEventListener('click', function() { // 获取当前页面的URL const currentUrl = window.location.href; // 使用document.querySelector来获取元素 var imgElement = document.querySelector("#app > div.main-container > div.wrapper.wrapped.lfe-body.header-layout.narrow > div.header > div.user-nav > nav > span > span > a > img"); // 检查元素是否存在 if (imgElement) { // 使用getAttribute方法获取alt属性的值 var altText = imgElement.getAttribute('alt'); console.log(altText); // 打印出alt属性的值 } else { console.log('Element not found'); } // 添加参数到URL const newUrl = currentUrl + (currentUrl.includes('?') ? '&' : '?') + "user=" + altText; // 在当前页面访问新的URL window.location.href = newUrl; }); })();