// ==UserScript==
// @name FAForumSFWversion
// @namespace http://tampermonkey.net/
// @version 1.1
// @description Allow you to hide NSFW topics or mark them with a red prefix, you can specify tags to filter in order to take new words in account
// @author MissNook
// @match http://forums.furaffinity.net/forums/*
// @match https://forums.furaffinity.net/forums/*
// @grant none
// @downloadURL none
// ==/UserScript==
(function() {
'use strict';
var tagsToCheck = localStorage.tagsToCheck ? localStorage.tagsToCheck.split(",") : ["nsfw", "nswf", "not sfw", "fetish", "diaper", "inflation", "vore", "bondage"];
var content = document.getElementById("content");
function addNSFWPrefix(){
var threads = content.getElementsByClassName("discussionListItem");
var prefixNSFW = document.createElement("a");
prefixNSFW.className = "prefixLink prefixForNSFW";
prefixNSFW.innerHTML = "NSFW:"
var len = threads.length,
i = 0;
for(; i