您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
try to take over the world!
// ==UserScript== // @name myetherwallet - Chỉnh max =100 // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match https://www.myetherwallet.com // @grant none // ==/UserScript== (function() { 'use strict'; var maxGas = xp("/html/body/header/section/section/div/span[3]/ul/div/input", 8); maxGas.max="100"; })(); function xp(exp, t, n) { var r = document.evaluate((exp||"//body"),(n||document),null,(t||6),null); if(t && t>-1 && t<10) switch(t) { case 1: r=r.numberValue; break; case 2: r=r.stringValue; break; case 3: r=r.booleanValue; break; case 8: case 9: r=r.singleNodeValue; break; } return r; }