YouTube Comment Filter

Removes typical comments like 'first' and 'I'm early'. Everything can be modified to the users liking.

Versão de: 05/10/2016. Veja: a última versão.

Você precisará instalar uma extensão como Tampermonkey, Greasemonkey ou Violentmonkey para instalar este script.

You will need to install an extension such as Tampermonkey to install this script.

Você precisará instalar uma extensão como Tampermonkey ou Violentmonkey para instalar este script.

Você precisará instalar uma extensão como Tampermonkey ou Userscripts para instalar este script.

Você precisará instalar uma extensão como o Tampermonkey para instalar este script.

Você precisará instalar um gerenciador de scripts de usuário para instalar este script.

(Eu já tenho um gerenciador de scripts de usuário, me deixe instalá-lo!)

Você precisará instalar uma extensão como o Stylus para instalar este estilo.

Você precisará instalar uma extensão como o Stylus para instalar este estilo.

Você precisará instalar uma extensão como o Stylus para instalar este estilo.

Você precisará instalar um gerenciador de estilos de usuário para instalar este estilo.

Você precisará instalar um gerenciador de estilos de usuário para instalar este estilo.

Você precisará instalar um gerenciador de estilos de usuário para instalar este estilo.

(Eu já possuo um gerenciador de estilos de usuário, me deixar fazer a instalação!)

// ==UserScript==
// @name         YouTube Comment Filter
// @namespace    https://www.youtube.com/
// @version      0.0.3
// @description  Removes typical comments like 'first' and 'I'm early'. Everything can be modified to the users liking.
// @match        https://www.youtube.com/*
// @run-at       document-start
// @grant        unsafeWindow
// @domain       https://www.youtube.com
// @require      http://code.jquery.com/jquery-1.12.2.min.js
// @author       Tom
// @copyright    2016+, Tom
// ==/UserScript==
/* jshint -W097 */
/* global $, console */
'use strict';

$(function() {
	// TODO:
	// - Comment replies.
	// - Regex for 'early' comments.
	// - Cringe removal.
	// - Code cleaning and stuff. All of this is done in a very short period of time. Am too lazy to do it properly for now.
	
	// SETTINGS:
	var INTERVAL = 500; // ms
	
	var MIN_LENGTH = 5;
	var MIN_WORD_COUNT = 3;
	var REMOVE_FIRST = true;
	var REMOVE_EARLY = true;
	var REMOVE_CRINGE = true;
	var REMOVE_FIFTH_LIKE = true;
	var REMOVE_SELF_LIKE = true;
	var REMOVE_SELF_PROMO = true;
	var REMOVE_ATTENTION_SEEKERS = true;
	
	var translation_spam = "Spam";
	// var commentSection = $('#comment-section-renderer');
	// var loadingPanel = $('.action-panel-loading');
	// var commentCounter = $('h2.comment-section-header-renderer');
	
	checkIsLoading();
	
	function checkIsLoading() {
		var isLoading = $('#watch-discussion').find('.action-panel-loading').length;

		if (isLoading) {
			setTimeout(function() {
				checkIsLoading();
			}, 500);
		} else {
			console.log("YTACR: Comment section loaded.");
			removeComments();
			
			var commentCount = $('.comment-thread-renderer').length;
			listenForNewComments(commentCount);
		}
	}
	
	function listenForNewComments(commentCount) {
		var currentCommentCount = $('.comment-thread-renderer').length;

		if (commentCount !== currentCommentCount) {
			console.log("YTACR: New comments found.");
			
			removeComments();
		}
		
		setTimeout(function() {
			listenForNewComments(currentCommentCount);
		}, INTERVAL);
	}
	
	function removeComments() {
		var removedComments = 0;
		
		$('.comment-thread-renderer').each(
			function(index) {
				var comment = $(this).find('.comment-renderer-text-content').html().toLowerCase();
				
				if (comment.length < MIN_LENGTH) {
					this.remove();
					removedComments++;
				}
				
				if (REMOVE_FIRST) {
					var first = [
						"first",
						"1st",
						"second",
						"2nd",
						"3rd",
						"4th"
					];
					
					for (var f in first) {
						if (comment.indexOf(first[f]) > -1 &&
					        comment.split(' ').length < MIN_WORD_COUNT) {
							this.remove();
							removedComments++;
						}
					}
				}
				
				if (REMOVE_EARLY) {
					var early = "early";
					var earlyOptions = [
						"i was this early",
						"i am so early",
						"i'm early",
						"im early"
					];
					
					if (comment.indexOf(early) > -1) {
						if (comment.split(' ').length < MIN_WORD_COUNT) {
							this.remove();
							removedComments++;
						}
						
						for (var eo in earlyOptions) {
							if (comment.indexOf(earlyOptions[eo])) {
								this.remove();
								removedComments++;
							}
						}
					}
				}
				
				if (REMOVE_CRINGE) {
					var cringe = "cringe";
					
					if (comment.indexOf(cringe) > -1) {
						this.remove();
						removedComments++;
					}
				}
				
				if (REMOVE_FIFTH_LIKE) {
					var fifthLike = "5th like";
					
					if (comment.indexOf(fifthLike) > -1) {
						this.remove();
						removedComments++;
					}
				}
				
				if (REMOVE_SELF_LIKE) {
					var selfLikes = [
						"can i get a thumbs up",
						"like my comment",
						"i get top rated",
						"i get top comment"
					];
					
					for (var sl in selfLikes) {
						if (comment.indexOf(selfLikes[sl]) > -1) {
							this.remove();
							removedComments++;
						}
					}
				}
				
				if (REMOVE_SELF_PROMO) {
					var selfPromos = [
						"on my channel"
					];
					
					for (var sp in selfPromos) {
						if (comment.indexOf(selfPromos[sp]) > -1) {
							this.remove();
							removedComments++;
						}
					}
				}
				
				if (REMOVE_ATTENTION_SEEKERS) {
					var attentionPhrases = [
						"If your reading this",
						"If you are reading this",
						"If you're reading this",
						"i get top comment",
						"notification squad",
						"hisss",
						"darude",
						"who is watching this",
						"watching this in",
						"first like",
						"first comment",
						"early comment"
					];
					
					for (var ap in attentionPhrases) {
						if (comment.indexOf(attentionPhrases[ap]) > -1) {
							this.remove();
							removedComments++;
						}
					}
				}
			}
		);
		
		setCommentCounter(removedComments);
		console.log("YTACR: Removed " + removedComments + " comments.");
	}
	
	function setCommentCounter(removedComments) {
		var isUsingImperial = false;
		var commentCounter = $('h2.comment-section-header-renderer');
		var span = "<span class=\"alternate-content-link\"></span>";
		var commentCounterText = commentCounter.find('b').first().text();
		
		var getCommentCountsRegex = /• (.*)<span/;
		var commentCountsHtml = commentCounter.html();
 		var commentCounts = getCommentCountsRegex.exec(commentCountsHtml);
		var currentTotalComments = commentCounts[1];
		
		var getSpamCountsRegex = /\s(\w+)$/;
 		var spamCounts = getSpamCountsRegex.exec(commentCountsHtml);
		var currentSpamComments = "0";
		if (spamCounts !== null) {
			currentSpamComments = spamCounts[1];
		}
		
		if (currentTotalComments.indexOf(',') !== -1) {
			isUsingImperial = true;
			currentTotalComments = currentTotalComments.replace(',', '');
			currentSpamComments = currentSpamComments.replace(',', '');
		} else {
			currentTotalComments = currentTotalComments.replace('.', '');
			currentSpamComments = currentSpamComments.replace('.', '');
		}

 		var newCommentCount = (currentTotalComments - removedComments);
 		var newSpamCount = (parseInt(currentSpamComments) + removedComments);
		
		if (isUsingImperial) {
			newCommentCount = newCommentCount.toString().split("").reverse().join("").replace(/(.{3})/g, "$1,").split("").reverse().join("");
			newSpamCount = newSpamCount.toString().split("").reverse().join("").replace(/(.{3})/g, "$1,").split("").reverse().join("");
		} else {
			newCommentCount = newCommentCount.toString().split("").reverse().join("").replace(/(.{3})/g, "$1.").split("").reverse().join("");
			newSpamCount = newSpamCount.toString().split("").reverse().join("").replace(/(.{3})/g, "$1.").split("").reverse().join("");
		}
		
 		commentCounter.html("<b>" + commentCounterText + "</b> • " + newCommentCount + span
						  + "<b>" + translation_spam + "</b> • " + newSpamCount);
	}
	
	console.log("YTACR: YouTube Annoying Comments Remover (YTACR) script active.");
});