Warning: fopen(/www/sites/update.greasyfork.icu/index/store/temp/69fd23669a86819ab75054442cbab54f.js): failed to open stream: No space left on device in /www/sites/update.greasyfork.icu/index/scriptControl.php on line 65
// ==UserScript==
// @name Post Spoiler for mturkgrind.com
// @author Kerek
// @namespace Kerek
// @version 0.2.1x
// @description Spoils posts based on keywords
// @require http://code.jquery.com/jquery-latest.min.js
// @include http://www.mturkgrind.com/*
// @include http://mturkgrind.com/*
// @grant GM_log
// @copyright 2014
// @downloadURL https://update.greasyfork.icu/scripts/6209/Post%20Spoiler%20for%20mturkgrindcom.user.js
// @updateURL https://update.greasyfork.icu/scripts/6209/Post%20Spoiler%20for%20mturkgrindcom.meta.js
// ==/UserScript==
// v0.2x, 2015-01-17: updates by clickhappier for MTG migration from vbulletin to xenforo
var spoil_me = ["First Example Keyword", "Second Example Keyword", "Third Example Keyword"];
var spoiler_text;
var spoiled = false;
$('[class*="messageContent"]').each(function(){
spoiled = false;
for (i = 0; i < spoil_me.length; i++){
if ($(this).text().toLowerCase().indexOf(spoil_me[i].toLowerCase())!==-1){
spoiler_text = spoil_me[i] + " Spoiler";
spoiled = true;
}
}
if (spoiled)
{
var post_content = $(this).html();
$(this).html( '');
}
});