NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Auto Click Staff
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author viktorShmer
// @license MIT
// @match https://staff.megagroup.ru/staff/queue/?queue_id=101&doer_id=1164*
// @grant none
// ==/UserScript==
(function() {
'use strict';
$(document).on('click','.craters .reglaments > li.reglament.new', function(event){
var selReg = undefined;
var target = $(event.currentTarget);
if($(this).closest('.item').find('td.info > .object_container.selected')[0]) {
$(this).next().find('.tasks:not(".hide")').find('> li:last-child > .doer').trigger('click');
$(this).next().find('[data-agent-id="1164"]').trigger('click');
selReg = $(this).closest('.item').find('td.info > .object_container.selected')[0];
var text = $(selReg).find('> .object.block.reglament > b').text();
$(this).next().find('.extra').next().find('.title input').focus().val(text);
if(event.ctrlKey) {
target.next().find('button.btn.submit').trigger('click');
}
}
else {
alert('Ты что не выбрал задачу ?!');
return false;
}
})
})();