修改腾讯先锋云游戏-元梦之星的网页标题
// ==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;
}
});
})();