您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
リニューアル後楽にする。左クリックと右クリックは挙動が異なります。
// ==UserScript== // @name マクロミル(SP版)項目を強制的に開く(右クリックで回答) // @namespace macromill_menuopen // @version 0.0.4 // @description リニューアル後楽にする。左クリックと右クリックは挙動が異なります。 // @author monitor_support // @include https://monitor.macromill.com/airs/exec/smartAnswerAction.do* // @require https://ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js // @license 新UI作ったやつはうんちでも食べてろ // @grant none // ==/UserScript== (function() { 'use strict'; /* $(document).ready(function(){ setTimeout(function(){ $('.matrix-item-text').trigger("click"); },2000); }); $('.qnr-q-ch-form, .rcnone, .radio').on('contextmenu', function() { $(this).trigger("click"); $(this).parent().parent().parent().parent().children(".matrix-item").trigger("click"); }); */ })();