您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
修改腾讯先锋云游戏-元梦之星的网页标题
// ==UserScript== // @name 修改元梦之星标题 // @namespace http://tampermonkey.net/ // @version 2024.08.19 // @description 修改腾讯先锋云游戏-元梦之星的网页标题 // @author 张瓜皮 // @match https://gamer.qq.com/v2/game/96897 // @icon https://pp.myapp.com/ma_icon/0/icon_54326199_1721181759/256 // @grant none // @license MIT // ==/UserScript== (function () { 'use strict'; var btn_t = document.createElement("button"); btn_t.innerHTML = "设置窗口标题"; // 设置按钮文本 btn_t.style.position = "absolute"; btn_t.style.left = "0"; btn_t.style.bottom = "0"; document.body.appendChild(btn_t); btn_t.addEventListener('click', function () { var userName = window.prompt('请输入窗口标题', '').replace(/\s/g, ""); if (userName != null) { document.title = "元梦之星 - " + userName; } }); })();