您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Patch bugs des MP sur Firefox.
当前为
// ==UserScript== // @name Opti_Mobile_Et_Firefox // @namespace Opti_Mobile_Et_Firefox // @version 0.36.0 // @description Patch bugs des MP sur Firefox. // @author Atlantis // @icon https://blog.mozilla.org/design/files/2019/06/Glyph.png // @match *://www.jeuxvideo.com/messages-prives/nouveau.php* // @match *://www.jeuxvideo.com/messages-prives/message.php* // @license MIT // ==/UserScript== if (window.location.href.indexOf("jeuxvideo.com/messages-prives/message.php") > -1) { if (userAgent.includes('firefox')) { resetTextFields(); //vide la zone de texte quand actualisé } } // vide la zone de texte en actualisant function resetTextFields() { var textField1 = document.getElementById('message'); if (textField1) { Object.getOwnPropertyDescriptor(HTMLTextAreaElement.prototype, "value") .set.call(textField1, ''); textField1.dispatchEvent(new Event("input", { bubbles: true })); } }
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址