您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Sets the action menu to a fixed location
- // ==UserScript==
- // @name Pendoria - Temporary action menu fix
- // @description Sets the action menu to a fixed location
- // @namespace http://pendoria.net/
- // @version 0.0.2
- // @author Xortrox
- // @match http://pendoria.net/game
- // @match https://pendoria.net/game
- // @match http://www.pendoria.net/game
- // @match https://www.pendoria.net/game
- // @grant none
- // ==/UserScript==
- $('#gameframe')[0].appendChild($('#gameframe-menu')[0]);
- $('#gameframe-menu').attr('style', `
- position: absolute !important;
- bottom: -30px !important;
- z-index: 9;
- border: 1px solid white;
- background: black;
- width: 42px;
- `);