您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Allow FF to zoom in RMB menu<br/>依旧要通过右键菜单设置的麦克风下拉框右击来显示放大缩小的选项。 <br/>You still need to RMB-Settings-Microphone Tab-Open the dropdown-RMB the dropdown, in order to display the zoom options!
当前为
// ==UserScript== // @name 《小花仙》页游:右键可以放大缩小 // @namespace http://tampermonkey.net/ // @version 0.4 // @description Allow FF to zoom in RMB menu<br/>依旧要通过右键菜单设置的麦克风下拉框右击来显示放大缩小的选项。 <br/>You still need to RMB-Settings-Microphone Tab-Open the dropdown-RMB the dropdown, in order to display the zoom options! // @author 别问我是谁请叫我雷锋 // @license BSD-3-Clause https://opensource.org/licenses/BSD-3-Clause // @match http://hua.61.com/play.shtml // @match http://hua.61.com // @match http://hua.61.com/huaplay.html // @grant none // ==/UserScript== 'use strict'; window.onload = function () { if (location.href == "http://hua.61.com/") { document.querySelector(".flash_content").innerHTML = '<embed width="100%" height="100%" name="plugin" id="plugin" src="http://hua.61.com/Client.swf?' + new Date().getTime() + '" type="application/x-shockwave-flash">'; return; } else { document.write(); document.write('<html><body style="height: 100%; width: 100%; overflow: hidden; margin: 0px; background-color: rgb(38, 38, 38);"><embed width="100%" height="100%" name="plugin" id="plugin" src="http://hua.61.com/Client.swf?' + new Date().getTime() + '" type="application/x-shockwave-flash"></body></html>'); } // Your code here... };
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址