NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name RisiSearch
// @author HaPandora
// @description Je regle les conneries des stagiaires
// @include http://www.jeuxvideo.com/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js
// @require https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js
// @version 0.5.2
// @icon http://image.noelshack.com/fichiers/2017/43/7/1509275898-19.png
// @copyright 2017+, HaPandora
// ==/UserScript==
(function() {
'use strict';
var version = '0.1';
$(document).on('click', '.btn-lancer-rech',function(e){
if($('.select-search').val()=="texte_message" && $('.txt-search').val()!="" )
{ e.preventDefault();
var url=$('.form-rech-forum').attr('action');
url+="?search_in_forum="+$('.txt-search').val()+"&type_search_in_forum=%74exte_message";
window.location.href = url;
}
});
$('a').each(function(){
this.href = this.href.replace('texte_message', '%74exte_message');
});
})();