FC - Hitman

Borra los temas (políticos, fútbol, apuestas, etc..) que quieras de FC

当前为 2015-12-08 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         FC - Hitman
// @namespace    https://greasyfork.org/es/scripts/14670-fc-hitman
// @version      0.7
// @description  Borra los temas (políticos, fútbol, apuestas, etc..) que quieras de FC
// @author       You
// @match        *.forocoches.com/*
// @grant        none
// @require 	 http://code.jquery.com/jquery-latest.js
// ==/UserScript==
/* jshint -W097 */
'use strict';

var hitman = function ()
{
	var words = {
		politics: [ "riverita", "peperro","político", "Saenz de Santamaria", "Sáenz de Santamaría", "votantes", "pdr snchz", "partidos politicos", "partidos políticos", "partido político", "partido politico", "Pedro Sánchez", "Pedro Sanchez", "rajoy","soraya", "falange", "pableras", "upyd", "coletas","psoe","debate", "carmena", "voto", "pablemos", "ciudadanos", "ciutadans", "discurso", "albert", "rivera", "iglesias", "elecciones", "votar", "votación", "votacion", "pedro sanchez", "pedro sánchez", "podemos", "podemitas", "pp"],
		football: ["real madrid", "futbol", "fútbol", "porra", "apuesta", "penya culer", "peña culer", "culers", "culeros", "culerdos", "FC Barcelona", "barça", "Barsa", "atleti", "PEÑA VALENCIANISTA", "merengue"]
	},
	clog = [];
	
	var init = function ()
	{
		removeThreads();
		setupPanel();
	}
	
	var setupPanel = function ()
	{
		$(".cajasprin:nth-of-type(1) tr").eq(1).append('<td><div id="hitman-config">Hitman</div></d>');
		
		var html = parseTemplate(function()
		{/*
			<div id="hitman-panel">
				Esconder temas de:
				<ul>
					<li>
						<label>
							<input type="checkbox" value="politics"> Política
						</label>
					</li>
					<li>
						<label>
							<input type="checkbox" value="football"> Fútbol
						</label>
					</li>
					<li>
						<br>
						<label>
							Filtro propio:<br>
							<textarea name="hitman-custom" placeholder="gore,movistar"></textarea>
						</label>
					</li>
				</ul>
				<button>Guardar cambios</button>
				<br>
				<a href="http://www.forocoches.com/foro/showthread.php?t=4671548">Ver actualizaciones</a>
			</div>
			<style>
				#hitman-config {
					cursor: pointer;
				}
				#hitman-panel {
					display: none;
					position: fixed;
				    background: white;
				    padding: 5px;
				    border: 1px solid;
				    margin-left: 74%;
				    margin-top: 6%;
				}
				#hitman-panel  ul {
					list-style-type: none;
			    	padding: 0px;
			    	margin-top: 0px;
				}
			</style>
		*/});
		$("body").prepend(html);
		
		$("#hitman-config").on("click", function () {
			$('#hitman-panel').toggle();
		});

		$("#hitman-panel input").on("change", function () {
			updateCensor($(this).val(), $(this).is(":checked"));
		});
		$("#hitman-panel textarea").on("change", function () {
			updateCensor("custom", $(this).val());
		});
		
		$("#hitman-panel button").on("click", function () {
			location.reload();
		});
		loadConfig();
	}
	var loadConfig = function ()
	{
		var config = getConfig(),
			k;
		
		for (k in config) {
			if (config[k]) {
				if (k == "custom") {
					$('#hitman-panel textarea[name="hitman-custom"]').val(config[k]);
				} else {
					$("#hitman-panel input[value=" + k + "]").prop("checked", true);
				}
			}
		}
	}
	var parseTemplate = function(func) {
		return func.toString().replace(/^[^\/]+\/\*!?/, '').replace(/\*\/[^\/]+$/, '');
	}
	
	var updateCensor = function (type, status)
	{
		var config = getConfig();
		
		config[type] = status;
		
		setConfig(config);
	}
	
	var getConfig = function ()
	{
		var config = localStorage.hitman;
		
		if (config === undefined) {
			// default config
			return {
				politics: true,
			};
		}
		
		return JSON.parse(config);
	}
	
	var setConfig = function (config) {
		localStorage.hitman = JSON.stringify(config);
	}
	
	var removeThreads = function ()
	{
		var censorList = [],
			config = getConfig(),
			k;
		
		
		// setup the word censorship list
		for (k in config) {
			if (config[k]) {
				if (k == "custom" && config[k].length > 0) {
					censorList = censorList.concat(config[k].split(","));
				} else {
					censorList = censorList.concat(words[k]);
				}
			}
		}

		// find and delete threads containing those words
		$('#threadbits_forum_2 tr').each(function ()
		{
			var title = $(this).find("td[title] a").eq(1).text(),
				pollTitle = $(this).find("td[title] a").eq(2).text(),
				intro = $(this).find("td[title]").attr("title"),
				regex,
                k;
			
			for (k in censorList)
			{
				regex = new RegExp(censorList[k], "i");
				
				if ((pollTitle.length > 4 && pollTitle.search(regex) !== -1) || title.search(regex) !== -1 || intro.search(regex) !== -1 ) {
					$(this).remove();
					break;
				}
			}
		});
	}
	
	return {
		init: init,
		clog: clog
	}
}();

$(document).ready(function() {
	hitman.init();
});