您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
URLをクリックしたことにする
// ==UserScript== // @name マクロミル(SP版)URLをクリックしたことにする // @namespace macromill_autoclick_sp // @version 0.0.1alpha3 // @description URLをクリックしたことにする // @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 // @grant none // @license 新UI作ったやつはうんちでも食べてろ // ==/UserScript== (function() { 'use strict'; $(document).ready(function(){ setTimeout(function(){ /* 要クリックのものをクリック不要にする */ try { $("a").removeAttr("check"); } catch (e) {} /* 動画の再生時間を1秒にする。ただし動画クリックは必要 */ /* サーバーに情報が送られてしまうため不安な場合 if(1) を if(0) に変更のこと */ if(1) { try { $('[name="attentionRequiredTime"]').val(['1']); } catch (e) {} } },1000); }); })();