FxP Add Quote Bot

Adds quotes

Author
Benchmark
Daily installs
0
Total installs
4
Ratings
0 0 0
Version
0.1
Created
2017-05-26
Updated
2017-05-26
License
N/A
Applies to

// ==UserScript==
// @name FxP Add Quote Bot
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Adds quotes
// @copyright 2016+, LOL
// @match https://www.fxp.co.il/showthread.php?*
// @grant none
// ==/UserScript==

(function() {
'use strict';

var elems = document.getElementsByTagName('input');
for(i = 0; i < elems.length; i++) {

if(elems[i].id.includes('post_imod_checkbox')) {
elems[i].click();
}
}
document.getElementsByClassName('sp_show showth-next-left')[0].click()

})();