"Atcoder" Finder

ツイート内の"Atcoder"の文字列を赤色にします("AtCoder"など、大文字小文字が違っているものには変化はありません)

Versione datata 29/10/2018. Vedi la nuova versione l'ultima versione.

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

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

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name        "Atcoder" Finder
// @description ツイート内の"Atcoder"の文字列を赤色にします("AtCoder"など、大文字小文字が違っているものには変化はありません)
// @version     1.0
// @author      euglenese
// @match       https://twitter.com/*

// @namespace https://greatest.deepsurf.us/users/201019
// ==/UserScript==


var count = 0;
var tweets = $(".tweet-text").each(function(){
	var txt = $(this).html().toString();
	var ans = "";
	for(var j = 0; j < txt.length; j++){
		if(j + 7 <= txt.length && txt.substr(j, 7) == "Atcoder"){
			ans += "<red style='color: red;'>Atcoder</red>";
			j += 6;
			count++;
		}else{
			ans += txt[j];
		}
	}
	$(this).html(ans);
});