无期迷途于2022.08.11公测
本WIKI编辑权限开放,欢迎收藏起来防止迷路,也希望有爱的小伙伴和我们一起编辑哟~
编辑帮助:目录 • BWIKI反馈留言板• 收藏桌面方法 ·
无期迷途于2022.08.11公测
本WIKI编辑权限开放,欢迎收藏起来防止迷路,也希望有爱的小伙伴和我们一起编辑哟~
全站通知:
乐与乐寻的局长办公室
刷
历
编
跳到导航
跳到搜索
创建页面
计时
传送
解析函数展开/折叠
曾经挖的坑
常用链接
跳转到自己的用户页面
油猴脚本Wiki增强插件,代码留档备用(查看)
// ==UserScript==
// @name InPageEdit NEXT
// @namespace https://www.ipe.wiki
// @version 0.1.1
// @description 模块化、可扩展的 MediaWiki 超级增强插件
// @author dragon-fish
// @match https://wiki.biligame.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// 使用 MediaWiki 的 RLQ (ResourceLoader Queue) 确保在核心资源加载后执行
window.RLQ = window.RLQ || [];
window.RLQ.push(() => {
// 1. 注入自定义 CSS
const customCSS = `
.oo-ui-window-frame {
max-height: 400px !important;
}
.oo-ui-window-content {
height: 400px;
}
`;
const styleTag = document.createElement('style');
styleTag.textContent = customCSS;
document.head.appendChild(styleTag);
// 2. 加载 InPageEdit 核心模块
const script = document.createElement('script');
script.src = 'https://cdn.jsdelivr.net/npm/@inpageedit/core/dist/index.js';
script.type = 'module';
document.head.appendChild(script);
});
})();

沪公网安备 31011002002714 号