マクロミル(SP版)項目を強制的に開く(右クリックで回答)

リニューアル後楽にする。左クリックと右クリックは挙動が異なります。

// ==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");
    });
*/
})();